]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-dir-tape.conf.in
3eca3aca5bfb4b5c6c1b09959301cc3214f47a18
[bacula/bacula] / regress / scripts / bacula-dir-tape.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 = @dirport@                # where we listen for UA connections
18   QueryFile = "@scriptdir@/query.sql"
19   WorkingDirectory = "@working_dir@"
20   PidDirectory = "@piddir@"
21   Maximum Concurrent Jobs = 4
22   Password = "pNvX1WiXnwv2C/F7E52LGvw6rKjbbPvu2kyuPa9pVaL3"
23   Messages = Daemon
24 }
25
26 #
27 # Define the main nightly save backup job
28 #   By default, this job will back up to disk in @tmpdir@
29 Job {
30   Name = "NightlySave"
31   Type = Backup
32   Client=@hostname@-fd 
33   FileSet="Full Set"
34   Storage = DDS-4
35   Messages = Standard
36   Pool = Default
37   Write Bootstrap = "@working_dir@/NightlySave.bsr"
38   Maximum Concurrent Jobs = 4
39   SpoolData = yes
40 # Prefer Mounted Volumes = no
41 }
42
43 Job {
44   Name = "NightlySave1"
45   Type = Backup
46   Client=@hostname@-fd 
47   FileSet="Full Set"
48   Storage = DDS-4
49   Messages = Standard
50   Pool = Default
51   Write Bootstrap = "@working_dir@/NightlySave.bsr"
52   Maximum Concurrent Jobs = 4
53   SpoolData = yes
54 # Prefer Mounted Volumes = no
55   Client Run Before Job = "/bin/sleep 120"
56 }
57
58 Job {
59   Name = "NightlySave2"
60   Type = Backup
61   Client=@hostname@-fd 
62   FileSet="Full Set"
63   Storage = DDS-4
64   Messages = Standard
65   Pool = Default
66   Write Bootstrap = "@working_dir@/NightlySave.bsr"
67   Maximum Concurrent Jobs = 4
68   SpoolData = yes
69 # Prefer Mounted Volumes = no
70 }
71
72 Job {
73   Name = "VerifyTape"
74   Type = Verify
75   Level = VolumeToCatalog
76   Client=@hostname@-fd 
77   FileSet="Verify Set"
78   Storage = DDS-4
79   Messages = Standard
80   Pool = Default
81   Write Bootstrap = "@working_dir@/NightlySave.bsr"
82   Maximum Concurrent Jobs = 4
83   SpoolData = yes
84 # Prefer Mounted Volumes = no
85 }
86
87 Job {
88   Name = "Virtual"
89   Type = Backup
90   Client=@hostname@-fd 
91   FileSet="Full Set"
92   Storage = Virtual
93   Messages = Standard
94   Pool = Default
95   Write Bootstrap = "@working_dir@/NightlySave.bsr"
96   Maximum Concurrent Jobs = 4
97   SpoolData = yes
98 # Prefer Mounted Volumes = no
99 }
100
101
102
103 # Standard Restore template, to be changed by Console program
104 Job {
105   Name = "RestoreFiles"
106   Type = Restore
107   Client=@hostname@-fd 
108   FileSet="Full Set"
109   Storage = DDS-4
110   Messages = Standard
111   Pool = Default
112   Where = @tmpdir@/bacula-restores
113 }
114
115
116 # List of files to be backed up
117 FileSet {
118   Name = "Full Set"
119   Include { Options { signature=MD5 }
120     File =  <@tmpdir@/file-list
121   }
122 }
123
124 FileSet {
125   Name = "Verify Set"
126   Include { 
127     Options { 
128        signature=MD5
129        verify=pins1
130     }
131     File =  <@tmpdir@/file-list
132   }
133 }
134
135
136
137 #
138 # When to do the backups, full backup on first sunday of the month,
139 #  differential (i.e. incremental since full) every other sunday,
140 #  and incremental backups other days
141 Schedule {
142   Name = "WeeklyCycle"
143   Run = Full 1st sun at 1:05
144   Run = Differential 2nd-5th sun at 1:05
145   Run = Incremental mon-sat at 1:05
146 }
147
148 # Client (File Services) to backup
149 Client {
150   Name = @hostname@-fd
151   Address = @hostname@
152   FDPort = @fdport@
153   Catalog = MyCatalog
154   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
155   File Retention = 30d                # 30 days
156   Job Retention = 180d                # six months
157   AutoPrune = yes                     # Prune expired Jobs/Files
158   Maximum Concurrent Jobs = 4
159 }
160
161 # Definition of DDS tape storage device
162 Storage {
163   Name = DDS-4
164   Address = @hostname@                # N.B. Use a fully qualified name here
165   SDPort = @sdport@
166   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
167   Device = DDS-4                      # must be same as Device in Storage daemon
168   Media Type = DDS-4                  # must be same as MediaType in Storage daemon
169   Maximum Concurrent Jobs = 4
170 # Autochanger = yes
171 }
172
173
174 # Definition of File storage device
175 Storage {
176   Name = File
177   Address = @hostname@                # N.B. Use a fully qualified name here
178   SDPort = @sdport@
179   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
180   Device = FileStorage                # must be same as Device in Storage daemon
181   Media Type = FileMedia              # must be same as MediaType in Storage daemon
182   Maximum Concurrent Jobs = 4
183 }
184
185 # Definition of Virtual storage device
186 Storage {
187   Name = Virtual
188   Address = @hostname@                # N.B. Use a fully qualified name here
189   SDPort = @sdport@
190   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
191   Device = Virtual                    # must be same as Device in Storage daemon
192   Media Type = Disk                   # must be same as MediaType in Storage daemon
193   Maximum Concurrent Jobs = 4
194 }
195
196
197
198
199 # Generic catalog service
200 Catalog {
201   Name = MyCatalog
202   dbname = regress; user = regress; password = ""
203 }
204
205 # Reasonable message delivery -- send most everything to email address
206 #  and to the console
207 Messages {
208   Name = Standard
209   mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula regression Job %j\) %r\" -s \"Regression: %t %e of %c %l\" %r"
210   operatorcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula regression Job %j\) %r\" -s \"Regression: Intervention needed for %j\" %r"
211 # MailOnError = @job_email@ = all, !terminate
212 # operator = @job_email@ = mount
213   console = all, !skipped, !terminate, !restored
214 #
215 # WARNING! the following will create a file that you must cycle from
216 #          time to time as it will grow indefinitely. However, it will
217 #          also keep all your messages if the scroll off the console.
218 #
219   append = "@working_dir@/log" = all, !skipped
220 }
221
222 #
223 # Message delivery for daemon messages (no job).
224 Messages {
225   Name = Daemon
226   mailcommand = "@sbindir@/bsmtp -h @smtp_host@ -f \"\(Bacula regression\) %r\" -s \"Regression daemon message\" %r"
227 # mail = @job_email@ = all, !skipped            
228   console = all, !skipped, !saved
229   append = "@working_dir@/log" = all, !skipped
230 }
231
232     
233 # Default pool definition
234 Pool {
235   Name = Default
236   Pool Type = Backup
237   Recycle = yes                       # Bacula can automatically recycle Volumes
238   AutoPrune = yes                     # Prune expired volumes
239   Volume Retention = 365d             # one year
240 }
241
242 Pool {
243   Name = Full
244   Pool Type = Backup
245   Recycle = yes                       # Bacula can automatically recycle Volumes
246   AutoPrune = yes                     # Prune expired volumes
247   Volume Retention = 365d             # one year
248 }
249
250 Pool {
251   Name = Inc
252   Pool Type = Backup
253   Recycle = yes                       # Bacula can automatically recycle Volumes
254   AutoPrune = yes                     # Prune expired volumes
255   Volume Retention = 365d             # one year
256 }
257
258 Pool {
259   Name = Scratch
260   Pool Type = Backup
261   Recycle = yes                       # Bacula can automatically recycle Volumes
262   AutoPrune = yes                     # Prune expired volumes
263   Volume Retention = 365d             # one year
264   Recycle Pool = Scratch              # recycle back here
265 }