]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/filed/bacula-fd.conf.in
Backport from Bacula Enterprise
[bacula/bacula] / bacula / src / filed / bacula-fd.conf.in
1 #
2 # Default  Bacula File Daemon Configuration file
3 #
4 #  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ @DISTVER@
5 #
6 # There is not much to change here except perhaps the
7 # File daemon Name to
8 #
9 #
10 # Copyright (C) 2000-2015 Kern Sibbald
11 # License: BSD 2-Clause; see file LICENSE-FOSS
12 #
13
14 #
15 # List Directors who are permitted to contact this File daemon
16 #
17 Director {
18   Name = @basename@-dir
19   Password = "@fd_password@"
20 }
21
22 #
23 # Restricted Director, used by tray-monitor to get the
24 #   status of the file daemon
25 #
26 Director {
27   Name = @basename@-mon
28   Password = "@mon_fd_password@"
29   Monitor = yes
30 }
31
32 #
33 # "Global" File daemon configuration specifications
34 #
35 FileDaemon {                          # this is me
36   Name = @basename@-fd
37   FDport = @fd_port@                  # where we listen for the director
38   WorkingDirectory = @working_dir@
39   Pid Directory = @piddir@
40   Maximum Concurrent Jobs = 20
41 # Plugin Directory = @plugindir@
42 }
43
44 # Send all messages except skipped files back to Director
45 Messages {
46   Name = Standard
47   director = @basename@-dir = all, !skipped, !restored
48 }