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