Merge branch 'master' of git+ssh://puppet.debian.org/srv/puppet.debian.org/git/dsa...
[mirror/dsa-puppet.git] / modules / bacula / templates / bacula-fd.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 # List Directors who are permitted to contact this File daemon
8 Director {
9   Name = <%= bacula_director_name %>
10   Password = "<%= bacula_client_secret %>"
11 }
12
13 # "Global" File daemon configuration specifications
14 FileDaemon {
15   Name = <%= bacula_client_name %>
16   FDport = <%= bacula_client_port %>
17   WorkingDirectory = /var/lib/bacula
18   Pid Directory = /var/run/bacula
19   Maximum Concurrent Jobs = 20
20   FDAddress = <%= fqdn %>
21   Maximum Network Buffer Size = 65536
22 }
23
24 # Send all messages except skipped files back to Director
25 Messages {
26   Name = Standard
27   director = <%=bacula_director_name%> = all, !skipped, !restored
28 }