Skip to content

Commit

Permalink
fix(molecule): disable debug packages
Browse files Browse the repository at this point in the history
  • Loading branch information
adf-patrickha committed Jan 6, 2025
1 parent 6349748 commit a913c65
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
- name: Converge
hosts: all
become: yes
gather_facts: yes
become: true
gather_facts: true

roles:
- role: ansible-role-bareos_dir
bareos_dir_backup_configurations: yes
bareos_dir_install_debug_packages: yes
bareos_dir_backup_configurations: true
bareos_dir_install_debug_packages: false
bareos_dir_hostname: bareos-dir
bareos_dir_password: "MySecretPassword"
bareos_dir_catalogs:
Expand Down Expand Up @@ -36,7 +36,7 @@
password: "MySecretPassword"
maximum_concurrent_jobs: 3
- name: "disabled-client"
enabled: no
enabled: false
bareos_dir_filesets:
- name: LinuxAll
description: "Backup all regular filesystems, determined by filesystem type."
Expand All @@ -46,7 +46,7 @@
exclude_dirs_containing: nobackup
options:
signature: MD5
one_fs: no
one_fs: false
fs_types:
- btrfs
- ext2
Expand Down Expand Up @@ -108,7 +108,7 @@
":db_host=/run/postgresql/"
":wal_archive_dir=/var/lib/pgsql/wal_archive/"
- name: disabled-fileset
enabled: no
enabled: false
bareos_dir_jobdefs:
- name: DefaultJob-1
type: Backup
Expand All @@ -131,7 +131,7 @@
":module_name=bareos-dir-class-plugins"
":testoption=testparam"
- name: disabled-jobdef
enabled: no
enabled: false
bareos_dir_jobs:
- name: my_job
description: "My backup job"
Expand All @@ -142,7 +142,7 @@
storage: File-1
messages: Standard
- name: disabled_job
enabled: no
enabled: false
- name: BackupCatalog
description: "Backup the catalog database (after the nightly save)"
jobdefs: DefaultJob
Expand Down Expand Up @@ -174,7 +174,7 @@
- "!skipped"
- "!saved"
- name: "disabled-message"
enabled: no
enabled: false
- name: Daemon
description: "Message delivery for daemon messages (no job)."
mailcommand: '/usr/bin/bsmtp -h localhost -f \"\(Bareos\) \<%r\>\" -s \"Bareos daemon message\" %r'
Expand Down Expand Up @@ -210,14 +210,14 @@
bareos_dir_pools:
- name: Full
pool_type: Backup
recycle: yes
autoprune: yes
recycle: true
autoprune: true
volume_retention: 365 days
maximum_volume_bytes: 50G
maximum_volumes: 100
label_format: "Full-"
- name: "disabled-pool"
enabled: no
enabled: false
bareos_dir_profiles:
- name: webui-admin
jobacl:
Expand Down Expand Up @@ -252,7 +252,7 @@
pluginoptionsacl:
- "*all*"
- name: "disabled-message"
enabled: no
enabled: false
bareos_dir_schedules:
- name: WeeklyCycle
run:
Expand All @@ -264,18 +264,18 @@
run:
- Full mon-fri at 21:10
- name: "disabled-schedule"
enabled: no
enabled: false
bareos_dir_storages:
- name: File-1
address: dir-1
password: "MySecretPassword"
device: FileStorage
media_type: File
tls_enable: yes
tls_verify_peer: no
tls_enable: true
tls_verify_peer: false
maximum_concurrent_jobs: 3
- name: "disabled-storage"
enabled: no
enabled: false
bareos_dir_plugins:
- director-python
Expand Down

0 comments on commit a913c65

Please sign in to comment.