]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-dir.conf.testrunscript.in
ebl move abortjobonerror no failjobonerror
[bacula/bacula] / regress / 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     failjobonerror = no
91     RunsWhen = Before
92   }
93   RunScript {
94     Command = "/bin/false RUN_FD_FAILED2"
95     failjobonerror = 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_FAILED1"
103 #we dont execute FAILED2 
104 #@hostname@-dir: AfterJob: run command "/bin/echo RunAfterFailedJob"
105 Job {
106   Name = "RUN_FD_FAILED2"
107   FileSet = FS_TESTJOB  
108   JobDefs = DefaultJob
109   RunScript {
110     Command = "/bin/false RUN_FD_FAILED1"
111     failjobonerror = yes
112     RunsWhen = Before
113   }
114   RunScript {
115     Command = "/bin/false RUN_FD_FAILED2"
116     failjobonerror = yes
117     RunsWhen = Before
118   }
119   RunScript {
120     Command = "/bin/false RUN_FD_FAILED3"
121     failjobonerror = yes
122     RunsOnFailure = yes
123     RunsWhen = Before
124   }
125
126   Run After Failed Job = "/bin/echo RunAfterFailedJob"
127 }
128
129 #@hostname@-fd: ClientBeforeJob: run command "/bin/false RUN_FD_WARNING"
130 #Backup OK -- with warnings
131 Job {
132   Name = "RUN_FD_WARNING"
133   FileSet = FS_TESTJOB  
134   JobDefs = DefaultJob
135   RunScript {
136     Command = "/bin/false RUN_FD_WARNING"
137     failjobonerror = no
138     RunsWhen = Before
139   }
140   Run After Failed Job = "/bin/echo RunAfterFailedJob"
141 }
142
143 Job {
144   Name = BUG_FATAL
145   JobDefs = DefaultJob
146   FileSet = FS_TESTJOB
147 }
148
149
150 # Client (File Services) to backup
151 Client {
152   Name = @hostname@-fd
153   Address = @hostname@
154   FDPort = 8102
155   Catalog = MyCatalog
156   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
157   File Retention = 30d                # 30 days
158   Job Retention = 180d                # six months
159   AutoPrune = yes                     # Prune expired Jobs/Files
160   Maximum Concurrent Jobs = 4
161 }
162
163 # Definiton of file storage device
164 Storage {
165   Name = File
166   Address = @hostname@                # N.B. Use a fully qualified name here
167   SDPort = 8103
168   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
169   Device = FileStorage
170   Media Type = File
171   Maximum Concurrent Jobs = 4
172 }
173
174 # Generic catalog service
175 Catalog {
176   Name = MyCatalog
177   dbname = regress; user = regress; password = ""
178 }
179
180
181 Messages {
182   Name = Standard
183   console = all, !skipped, !saved
184 }
185
186 # Default pool definition
187 Pool {
188   Name = Default
189   Pool Type = Backup
190   Recycle = yes                       # Bacula can automatically recycle Volumes
191   AutoPrune = yes                     # Prune expired volumes
192   Volume Retention = 365d             # one year
193 }