]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/tls-auth-bacula-fd.conf.in
Make out of freespace non-fatal for removable devices -- i.e. behaves like tape
[bacula/bacula] / regress / scripts / tls-auth-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 Authenticate = yes
17   TLS Require = no
18   TLS Certificate = "@scriptdir@/tls-cert.pem"
19   TLS Key = "@scriptdir@/tls-cert.pem"
20   TLS CA Certificate File = "@scriptdir@/tls-CA.pem"
21 }
22
23 #
24 # "Global" File daemon configuration specifications
25 #
26 FileDaemon {                          # this is me
27   Name = @hostname@-fd
28   FDPort = @fdport@                  # where we listen for the director
29   WorkingDirectory = "@working_dir@"
30   Pid Directory = "@piddir@"
31   SubSys Directory = "@subsysdir@"
32   TLS Authenticate = yes
33   TLS Require = no
34   TLS Certificate = "@scriptdir@/tls-cert.pem"
35   TLS Key = "@scriptdir@/tls-cert.pem"
36   TLS CA Certificate File = "@scriptdir@/tls-CA.pem"
37 }
38
39 # Send all messages except skipped files back to Director
40 Messages {
41   Name = Standard
42   director = @hostname@-dir = all, !terminate, !restored
43 }