Initial commit
Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
parent
d547c7f607
commit
096a3e0540
69 changed files with 1650 additions and 0 deletions
31
templates/bacula/bacula-sd.conf.j2
Normal file
31
templates/bacula/bacula-sd.conf.j2
Normal file
|
@ -0,0 +1,31 @@
|
|||
{{ ansible_managed | comment }}
|
||||
|
||||
Director {
|
||||
Name = {{ bacula_director_name }}
|
||||
Password = "{{ bacula_storage_password }}"
|
||||
}
|
||||
|
||||
Storage {
|
||||
Name = {{ bacula_storage_name }}
|
||||
SDPort = 9103
|
||||
WorkingDirectory = "/var/lib/bacula"
|
||||
Pid Directory = "/var/run/bacula"
|
||||
Maximum Concurrent Jobs = 20
|
||||
SDAddress = {{ bacula_storage_address | default('127.0.0.1') }}
|
||||
}
|
||||
|
||||
Device {
|
||||
Name = {{ bacula_device_name }}
|
||||
Media Type = File
|
||||
Archive Device = {{ bacula_device_archive_device }}
|
||||
LabelMedia = yes
|
||||
Random Access = yes
|
||||
AutomaticMount = yes
|
||||
RemovableMedia = no
|
||||
AlwaysOpen = no
|
||||
}
|
||||
|
||||
Messages {
|
||||
Name = Standard
|
||||
director = {{ bacula_director_name }} = all
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue