]> git.sur5r.net Git - bacula/bacula/commitdiff
Add missing configuration file.
authorRobert Nelson <robertn@the-nelsons.org>
Tue, 1 Aug 2006 11:58:44 +0000 (11:58 +0000)
committerRobert Nelson <robertn@the-nelsons.org>
Tue, 1 Aug 2006 11:58:44 +0000 (11:58 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3220 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/win32/filed/bacula-fd.conf.in [new file with mode: 0644]

diff --git a/bacula/src/win32/filed/bacula-fd.conf.in b/bacula/src/win32/filed/bacula-fd.conf.in
new file mode 100644 (file)
index 0000000..137cf42
--- /dev/null
@@ -0,0 +1,43 @@
+#
+# Default  Bacula File Daemon Configuration file
+#
+#  For Bacula release @VERSION@ (@DATE@) -- @DISTNAME@ @DISTVER@
+#
+# There is not much to change here except perhaps the
+# File daemon Name
+#
+
+#
+# List Directors who are permitted to contact this File daemon
+#
+Director {
+  Name = @director_name@
+  Password = "@director_password@"
+}
+
+#
+# Restricted Director, used by tray-monitor to get the
+#   status of the file daemon
+#
+Director {
+  Name = @monitor_name@
+  Password = "@monitor_password@"
+  Monitor = yes
+}
+
+#
+# "Global" File daemon configuration specifications
+#
+FileDaemon {                            # this is me
+  Name = @client_name@
+  FDport = @client_port@                # where we listen for the director
+  WorkingDirectory = @working_dir@
+  Pid Directory = @working_dir@
+  Maximum Concurrent Jobs = @client_maxjobs@
+}
+
+# Send all messages except skipped files back to Director
+Messages {
+  Name = Standard
+  director = @director_name@ = all, !skipped, !restored
+}