]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/test-bacula-dir.conf.in
Final changes
[bacula/bacula] / regress / scripts / test-bacula-dir.conf.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.33 
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 #
28 # Define the main nightly save backup job
29 #   By default, this job will back up to disk in /tmp
30 Job {
31   Name = "NightlySave"
32   Type = Backup
33   Client=@hostname@-fd 
34   FileSet="Full Set"
35   Storage = File
36   Messages = Standard
37   Pool = Default
38   Write Bootstrap = "@working_dir@/NightlySave.bsr"
39   Maximum Concurrent Jobs = 4
40   SpoolData=yes
41 }
42
43 Job {
44   Name = "MonsterSave"
45   Type = Backup
46   Client=@hostname@-fd 
47   FileSet="Full Set"
48   Storage = File1
49   Messages = Standard
50   Pool = Default
51   Write Bootstrap = "@working_dir@/NightlySave.bsr"
52 }
53
54
55 Job {
56   Name = "VerifyVolume"
57   Type = Verify
58   Level = VolumeToCatalog
59   Client=@hostname@-fd 
60   FileSet="Full Set"
61   Storage = File
62   Messages = Standard
63   Pool = Default
64   Write Bootstrap = "@working_dir@/NightlySave.bsr"
65 }
66
67
68 Job {
69   Name = "SparseTest"
70   Type = Backup
71   Client=@hostname@-fd 
72   FileSet="SparseSet"
73   Storage = File
74   Messages = Standard
75   Pool = Default
76   Write Bootstrap = "@working_dir@/NightlySave.bsr"
77 }
78
79 Job {
80   Name = "CompressedTest"
81   Type = Backup
82   Client=@hostname@-fd 
83   FileSet="CompressedSet"
84   Storage = File
85   Messages = Standard
86   Pool = Default
87   Maximum Concurrent Jobs = 4
88   Write Bootstrap = "@working_dir@/NightlySave.bsr"
89 }
90
91 Job {
92   Name = "SparseCompressedTest"
93   Type = Backup
94   Client=@hostname@-fd 
95   FileSet="SparseCompressedSet"
96   Storage = File
97   Messages = Standard
98   Pool = Default
99   Write Bootstrap = "@working_dir@/NightlySave.bsr"
100 }
101
102
103 # Backup the catalog database (after the nightly save)
104 Job {
105   Name = "BackupCatalog"
106   Type = Backup
107   Client=@hostname@-fd 
108   FileSet="Catalog"
109 #  Schedule = "WeeklyCycleAfterBackup"
110   Storage = File
111   Messages = Standard
112   Pool = Default
113   # This creates an ASCII copy of the catalog
114   RunBeforeJob = "@sbindir@/make_catalog_backup -u bacula"
115   # This deletes the copy of the catalog
116   RunAfterJob  = "@sbindir@/delete_catalog_backup"
117   Write Bootstrap = "@working_dir@/BackupCatalog.bsr"
118 }
119
120 # Standard Restore template, to be changed by Console program
121 Job {
122   Name = "RestoreFiles"
123   Type = Restore
124   Client=@hostname@-fd 
125   FileSet="Full Set"
126   Storage = File
127   Messages = Standard
128   Pool = Default
129   Where = /tmp/bacula-restores
130 }
131
132
133 # List of files to be backed up
134 FileSet {
135   Name = "Full Set"
136   Include = signature=MD5 { 
137     </tmp/file-list
138   }
139 }
140
141 FileSet {
142   Name = "SparseSet"
143   Include = signature=MD5 sparse=yes { 
144     </tmp/file-list
145   }
146 }
147
148 FileSet {
149   Name = "CompressedSet"
150   Include = signature=MD5 compression=GZIP { 
151     </tmp/file-list
152   }
153 }
154
155 FileSet {
156   Name = "SparseCompressedSet"
157   Include = signature=MD5 compression=GZIP { 
158     </tmp/file-list
159   }
160 }
161
162
163
164 #
165 # When to do the backups, full backup on first sunday of the month,
166 #  differential (i.e. incremental since full) every other sunday,
167 #  and incremental backups other days
168 Schedule {
169   Name = "WeeklyCycle"
170   Run = Full 1st sun at 1:05
171   Run = Differential 2nd-5th sun at 1:05
172   Run = Incremental mon-sat at 1:05
173 }
174
175 # This schedule does the catalog. It starts after the WeeklyCycle
176 Schedule {
177   Name = "WeeklyCycleAfterBackup"
178   Run = Full sun-sat at 1:10
179 }
180
181 # This is the backup of the catalog
182 FileSet {
183   Name = "Catalog"
184   Include = signature=MD5 {
185      /home/kern/bacula/regress/bin/working/bacula.sql
186   }
187 }
188
189 # Client (File Services) to backup
190 Client {
191   Name = @hostname@-fd
192   Address = @hostname@
193   FDPort = 8102
194   Catalog = MyCatalog
195   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
196   File Retention = 30d                # 30 days
197   Job Retention = 180d                # six months
198   AutoPrune = yes                     # Prune expired Jobs/Files
199   Maximum Concurrent Jobs = 4
200 }
201
202 # Definiton of file storage device
203 Storage {
204   Name = File
205   Address = @hostname@                # N.B. Use a fully qualified name here
206   SDPort = 8103
207   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
208   Device = FileStorage
209   Media Type = File
210   Maximum Concurrent Jobs = 4
211 }
212
213 Storage {
214   Name = File1
215   Address = @hostname@                # N.B. Use a fully qualified name here
216   SDPort = 8103
217   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
218   Device = FileStorage1
219   Media Type = File1
220   Maximum Concurrent Jobs = 4
221 }
222
223
224 # Definition of DLT tape storage device
225 #Storage {
226 #  Name = DLTDrive
227 #  Address = @hostname@                # N.B. Use a fully qualified name here
228 #  SDPort = 8103
229 #  Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
230 #  Device = "HP DLT 80"                # must be same as Device in Storage daemon
231 #  Media Type = DLT8000                # must be same as MediaType in Storage daemon
232 #}
233
234 # Definition of DDS tape storage device
235 #Storage {
236 #  Name = SDT-10000
237 #  Address = @hostname@                # N.B. Use a fully qualified name here
238 #  SDPort = 8103
239 #  Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
240 #  Device = SDT-10000                  # must be same as Device in Storage daemon
241 #  Media Type = DDS-4                  # must be same as MediaType in Storage daemon
242 #}
243
244 # Definition of 8mm tape storage device
245 #Storage {
246 #  Name = "8mmDrive"
247 #  Address = @hostname@                # N.B. Use a fully qualified name here
248 #  SDPort = 8103
249 #  Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"
250 #  Device = "Exabyte 8mm"
251 #  MediaType = "8mm"
252 #}
253
254
255 # Generic catalog service
256 Catalog {
257   Name = MyCatalog
258   dbname = bacula; user = bacula; password = ""
259 }
260
261 # Reasonable message delivery -- send most everything to email address
262 #  and to the console
263 Messages {
264   Name = Standard
265   mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
266   operatorcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
267   MailOnError = @job_email@ = all
268   operator = @job_email@ = mount
269   console = all, !skipped, !terminate, !restored
270 #
271 # WARNING! the following will create a file that you must cycle from
272 #          time to time as it will grow indefinitely. However, it will
273 #          also keep all your messages if the scroll off the console.
274 #
275   append = "@working_dir@/log" = all, !skipped
276 }
277
278 Messages {
279   Name = NoEmail
280   mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
281   console = all, !skipped, !terminate
282 #
283 # WARNING! the following will create a file that you must cycle from
284 #          time to time as it will grow indefinitely. However, it will
285 #          also keep all your messages if the scroll off the console.
286 #
287   append = "@working_dir@/log" = all, !skipped
288 }
289
290     
291 # Default pool definition
292 Pool {
293   Name = Default
294   Pool Type = Backup
295   Recycle = yes                       # Bacula can automatically recycle Volumes
296   AutoPrune = yes                     # Prune expired volumes
297   Volume Retention = 365d             # one year
298   Accept Any Volume = yes             # write on any volume in the pool
299 }