]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/templates/bacula-sd.conf.erb
heardbeats
[dsa-puppet.git] / modules / bacula / templates / bacula-sd.conf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5 #  For Bacula release 5.0.1 (24 February 2010) -- debian 5.0.4
6
7 Storage {
8   Name = <%= bacula_storage_name %>
9   SDPort = <%= bacula_storage_port %>
10   WorkingDirectory = "/var/lib/bacula"
11   Pid Directory = "/var/run/bacula"
12   Maximum Concurrent Jobs = 21
13   SDAddress = <%= bacula_storage_address %>
14   Heartbeat Interval = 180
15 }
16
17 # List Directors who are permitted to contact Storage daemon
18 #
19 Director {
20   Name = <%= bacula_director_name %>
21   Password = "<%= bacula_storage_secret %>"
22 }
23
24
25 # To connect, the Director's bacula-dir.conf must have the
26 #  same Name and MediaType.
27 #
28 Device {
29   Name = <%= bacula_filestor_device %>
30   Media Type = <%= bacula_filestor_name %>
31   Archive Device = <%= bacula_backup_path %>
32   LabelMedia = yes;
33   Random Access = Yes;
34   AutomaticMount = yes;
35   RemovableMedia = no;
36   AlwaysOpen = no;
37   Maximum Network Buffer Size = 65536
38 }
39
40 # Send all messages to the Director,
41 # mount messages also are sent to the email address
42 #
43 Messages {
44   Name = Standard
45   director = <%= bacula_director_name %> = all
46 }