From 3001cea2c9c84fa15c8ed6e85048d0696d91749f Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Tue, 1 Aug 2006 11:58:44 +0000 Subject: [PATCH] Add missing configuration file. 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 | 43 ++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 bacula/src/win32/filed/bacula-fd.conf.in diff --git a/bacula/src/win32/filed/bacula-fd.conf.in b/bacula/src/win32/filed/bacula-fd.conf.in new file mode 100644 index 0000000000..137cf4204f --- /dev/null +++ b/bacula/src/win32/filed/bacula-fd.conf.in @@ -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 +} -- 2.39.5