]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/tls-bacula-fd.conf.in
Copy trunk regress into Branch
[bacula/bacula] / regress / scripts / tls-bacula-fd.conf.in
1 #
2 # Default  Bacula File Daemon Configuration file
3 #
4 #  For Bacula release 2.0
5 #
6 # There is not much to change here except perhaps the
7 # File daemon Name to
8 #
9
10 #
11 # List Directors who are permitted to contact this File daemon
12 #
13 Director {
14   Name = @hostname@-dir
15   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"
16   TLS Require = yes
17   TLS Certificate = "@scriptdir@/tls-cert.pem"
18   TLS Key = "@scriptdir@/tls-cert.pem"
19   TLS CA Certificate File = "@scriptdir@/tls-CA.pem"
20 }
21
22 #
23 # "Global" File daemon configuration specifications
24 #
25 FileDaemon {                          # this is me
26   Name = @hostname@-fd
27   FDPort = @fdport@                  # where we listen for the director
28   WorkingDirectory = "@working_dir@"
29   Pid Directory = "@piddir@"
30   SubSys Directory = "@subsysdir@"
31   TLS Require = yes
32   TLS Certificate = "@scriptdir@/tls-cert.pem"
33   TLS Key = "@scriptdir@/tls-cert.pem"
34   TLS CA Certificate File = "@scriptdir@/tls-CA.pem"
35 }
36
37 # Send all messages except skipped files back to Director
38 Messages {
39   Name = Standard
40   director = @hostname@-dir = all, !terminate
41 }