-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.yml
71 lines (54 loc) · 1.86 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
# defaults file for bareos_fd
# The client has these configuration parameters.
# Backup existing configurations.
bareos_fd_backup_configurations: false
# Install debug packages. This requires the debug repositories to be enabled.
bareos_fd_install_debug_packages: false
# The hostname of the File Daemon.
bareos_fd_hostname: "{{ inventory_hostname }}"
# The maximum bandwidth to use.
bareos_fd_max_job_bandwidth: "10 mb/s"
# The message to use.
bareos_fd_message: "Standard"
# The maximum number of concurrent jobs.
bareos_fd_maximum_concurrent_jobs: 20
# Enable TLS.
bareos_fd_tls_enable: true
# Verify the peer.
bareos_fd_tls_verify_peer: false
# The inteval in seconds to send a heartbeat.
bareos_fd_heartbeat_interval: 0
# The Directors to connect to.
bareos_fd_directors:
- name: "bareos-dir"
password: "secretpassword"
monitor: no
description: "Allow the configured Director to access this file daemon."
- name: bareos-mon
password: "secretpassword"
monitor: yes
description: "Restricted Director, used by tray-monitor to get the status of this file daemon."
# The Messages to configure.
bareos_fd_messages:
- name: "Standard"
director:
server: bareos-dir
messages:
- all
- "!skipped"
- "!restored"
description: "Send relevant messages to the Director."
# For encryption of data, set this to `true`.
bareos_fd_encryption_enabled: false
# You may bring your own private key. If not specified, a new one will be generated.
bareos_fd_encryption_private_key: ""
# The master public key to use.
bareos_fd_encryption_master_public_key: ""
##
# Defaults used by the Bareos PostgreSQL backup plugin
##
# PostgreSQL major version
# This value will be overwritten on Debian based distros by the actual version in-use.
# On Red Hat based distros, the value is not required as of now.
bareos_fd_plugin_psql_version: 15