| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Default Bacula File Daemon Configuration file
- #
- # For Bacula release 11.0.1 (05 February 2020) -- redhat Beta
- #
- # There is not much to change here except perhaps the
- # File daemon Name to
- #
- #
- # Copyright (C) 2000-2020 Kern Sibbald
- # License: BSD 2-Clause; see file LICENSE-FOSS
- #
- #
- # List Directors who are permitted to contact this File daemon
- #
- Director {
- Name = bacula-dir
- Password = "000000000000000000000000000000000"
- # TLSPSKEnable = yes
- # TLS configuration directives
- TLSEnable = no
- TLSRequire = no
- TLSVerifyPeer = no
- # TLS CA Certificate File = /opt/bacula/ssl/certs/root_cert.pem
- # TLS Certificate = /opt/bacula/ssl/certs/client1_cert.pem
- # TLS Key = /opt/bacula/ssl/keys/client1_key.pem
- }
- FileDaemon {
- Name = bacula.space.swri.edu
- FDPort = 9102
- FDAddress = 0.0.0.0
- WorkingDirectory = /var/spool/bacula
- Pid Directory = /var/run
- Maximum Concurrent Jobs = 20
- Plugin Directory = /usr/lib64/bacula
- }
- # Send all messages except skipped files back to Director
- Messages {
- Name = Standard
- director = bacula-dir = all, !skipped, !restored, !saved
- }
|