]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/templates/bacula-sd.conf.erb
a22d7fc15fdf1350e8048dda774e0d7889388b55
[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 }
15
16 # List Directors who are permitted to contact Storage daemon
17 #
18 Director {
19   Name = <%=bacula_director_name%>
20   Password = "<%=bacula_storage_secret%>"
21 }
22
23
24 # To connect, the Director's bacula-dir.conf must have the
25 #  same Name and MediaType.
26 #
27 Device {
28   Name = <%=bacula_filestor_device%>
29   Media Type = <%=bacula_filestor_name%>
30   Archive Device = <%=bacula_backup_path%>
31   LabelMedia = yes;
32   Random Access = Yes;
33   AutomaticMount = yes;
34   RemovableMedia = no;
35   AlwaysOpen = no;
36   Maximum Network Buffer Size = 65536
37 }
38
39 # Send all messages to the Director,
40 # mount messages also are sent to the email address
41 #
42 Messages {
43   Name = Standard
44   director = <%=bacula_director_name%> = all
45 }