]> git.sur5r.net Git - bacula/bacula/blob - regress/win32/scripts/bacula-dir.conf.testrunscript.in
9efaf661582527b103f9756406147c6d274f83e6
[bacula/bacula] / regress / win32 / scripts / bacula-dir.conf.testrunscript.in
1 #
2 # Default Bacula Director Configuration file
3 #
4 #  The only thing that MUST be changed is to add one or more
5 #   file or directory names in the Include directive of the
6 #   FileSet resource.
7 #
8 #  For Bacula release 1.39.27 (24 October 2006) -- debian testing/unstable
9 #
10 #  You might also want to change the default email address
11 #   from root to your address.  See the "mail" and "operator"
12 #   directives in the Messages resource.
13 #
14
15 Director {                            # define myself
16   Name = @hostname@-dir
17   DIRport = 8101                # where we listen for UA connections
18   QueryFile = "@scriptdir@/query.sql"
19   WorkingDirectory = "@working_dir@"
20   PidDirectory = "@piddir@"
21   SubSysDirectory = "@subsysdir@"
22   Maximum Concurrent Jobs = 4
23   Password = "pNvX1WiXnwv2C/F7E52LGvw6rKjbbPvu2kyuPa9pVaL3"         # Console password
24   Messages = Standard
25 }
26
27 JobDefs {
28   Name = "DefaultJob"
29   Type = Backup
30   Level = Incremental
31   Client = @hostname@-fd 
32   FileSet = FS_TESTJOB
33   Storage = File
34   Messages = Standard
35   Pool = Default
36   Priority = 10
37   Maximum Concurrent Jobs = 16
38 }
39
40 FileSet {
41  Name = FS_TESTJOB
42  Include {
43    File=</tmp/file-list
44  }
45 }
46
47 #dir: BeforeJob: run command "/bin/echo RunBeforeJob"
48 #fd: ClientRunBeforeJob: ClientRunBeforeJob
49 #fd: ClientAfterJob: run command "/bin/echo ClientRunAfterJob"
50 #dir: AfterJob: run command "/bin/echo RunAfterJob"
51
52 Job {
53   Name = "RUN_ALL_OK"
54   JobDefs = DefaultJob
55   FileSet = FS_TESTJOB
56   RunBeforeJob = "/bin/echo RunBeforeJob"
57   ClientRunBeforeJob = "/bin/echo ClientRunBeforeJob"
58   Run After Job = "/bin/echo RunAfterJob"
59   ClientRunAfterJob = "/bin/echo ClientRunAfterJob"
60 }
61
62 #After job are after before job
63 Job {
64   Name = "RUN_DIR_FAILED_BUG"
65   FileSet = FS_TESTJOB  
66   JobDefs = DefaultJob
67   Run After Failed Job = "/bin/echo RunAfterFailedJob"
68   RunBeforeJob = "/bin/false"
69 }
70
71 #@hostname@-dir: BeforeJob: run command "/bin/false"
72 #@hostname@-dir: BeforeJob: RunAfterFailedJob
73 Job {
74   Name = "RUN_DIR_FAILED"
75   FileSet = FS_TESTJOB  
76   JobDefs = DefaultJob
77   RunBeforeJob = "/bin/false RUN_DIR_FAILED"
78   Run After Failed Job = "/bin/echo RunAfterFailedJob"
79 }
80
81 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_FAILED1"
82 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_FAILED2"
83 #@hostname@-dir: AfterJob: run command "/bin/echo RunAfterFailedJob"
84 Job {
85   Name = "RUN_FD_FAILED"
86   FileSet = FS_TESTJOB  
87   JobDefs = DefaultJob
88   RunScript {
89     Command = "/bin/false RUN_FD_FAILED1"
90     abortjobonerror = no
91     RunsWhen = Before
92   }
93   RunScript {
94     Command = "/bin/false RUN_FD_FAILED2"
95     abortjobonerror = yes
96     RunsWhen = Before
97   }
98
99   Run After Failed Job = "/bin/echo RunAfterFailedJob"
100 }
101
102 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_WARNING"
103 #Backup OK -- with warnings
104 Job {
105   Name = "RUN_FD_WARNING"
106   FileSet = FS_TESTJOB  
107   JobDefs = DefaultJob
108   RunScript {
109     Command = "/bin/false RUN_FD_WARNING"
110     abortjobonerror = no
111     RunsWhen = Before
112   }
113   Run After Failed Job = "/bin/echo RunAfterFailedJob"
114 }
115
116 # Client (File Services) to backup
117 Client {
118   Name = @hostname@-fd
119   Address = @hostname@
120   FDPort = 8102
121   Catalog = MyCatalog
122   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
123   File Retention = 30d                # 30 days
124   Job Retention = 180d                # six months
125   AutoPrune = yes                     # Prune expired Jobs/Files
126   Maximum Concurrent Jobs = 4
127 }
128
129 # Definiton of file storage device
130 Storage {
131   Name = File
132   Address = @hostname@                # N.B. Use a fully qualified name here
133   SDPort = 8103
134   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
135   Device = FileStorage
136   Media Type = File
137   Maximum Concurrent Jobs = 4
138 }
139
140 # Generic catalog service
141 Catalog {
142   Name = MyCatalog
143   dbname = bacula; user = bacula; password = ""
144 }
145
146
147 Messages {
148   Name = Standard
149   stdout = all, !skipped
150 }
151
152 # Default pool definition
153 Pool {
154   Name = Default
155   Pool Type = Backup
156   Recycle = yes                       # Bacula can automatically recycle Volumes
157   AutoPrune = yes                     # Prune expired volumes
158   Volume Retention = 365d             # one year
159 }