]> git.sur5r.net Git - bacula/bacula/blob - regress/scripts/bacula-dir-tape.conf.in
203cec84c6f520cbc7a0b7830fe83af2f533d12c
[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 = 8101                # 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 /tmp
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 # Prefer Mounted Volumes = no
40   SpoolData = yes
41 # Prefer Mounted Volumes = no
42 }
43
44 Job {
45   Name = "NightlySave1"
46   Type = Backup
47   Client=@hostname@-fd 
48   FileSet="Full Set"
49   Storage = DDS-4
50   Messages = Standard
51   Pool = Default
52   Write Bootstrap = "@working_dir@/NightlySave.bsr"
53   Maximum Concurrent Jobs = 4
54   SpoolData = yes
55 # Prefer Mounted Volumes = no
56   Client Run Before Job = "/bin/sleep 120"
57 }
58
59 Job {
60   Name = "NightlySave2"
61   Type = Backup
62   Client=@hostname@-fd 
63   FileSet="Full Set"
64   Storage = DDS-4
65   Messages = Standard
66   Pool = Default
67   Write Bootstrap = "@working_dir@/NightlySave.bsr"
68   Maximum Concurrent Jobs = 4
69   SpoolData = yes
70 # Prefer Mounted Volumes = no
71 }
72
73
74 # Standard Restore template, to be changed by Console program
75 Job {
76   Name = "RestoreFiles"
77   Type = Restore
78   Client=@hostname@-fd 
79   FileSet="Full Set"
80   Storage = DDS-4
81   Messages = Standard
82   Pool = Default
83   Where = /tmp/bacula-restores
84 }
85
86
87 # List of files to be backed up
88 FileSet {
89   Name = "Full Set"
90   Include { Options { signature=MD5 }
91     File =  </tmp/file-list
92   }
93 }
94
95
96 #
97 # When to do the backups, full backup on first sunday of the month,
98 #  differential (i.e. incremental since full) every other sunday,
99 #  and incremental backups other days
100 Schedule {
101   Name = "WeeklyCycle"
102   Run = Full 1st sun at 1:05
103   Run = Differential 2nd-5th sun at 1:05
104   Run = Incremental mon-sat at 1:05
105 }
106
107 # Client (File Services) to backup
108 Client {
109   Name = @hostname@-fd
110   Address = @hostname@
111   FDPort = 8102
112   Catalog = MyCatalog
113   Password = "xevrjURYoCHhn26RaJoWbeWXEY/a3VqGKp/37tgWiuHc"          # password for FileDaemon
114   File Retention = 30d                # 30 days
115   Job Retention = 180d                # six months
116   AutoPrune = yes                     # Prune expired Jobs/Files
117   Maximum Concurrent Jobs = 4
118 }
119
120 # Definition of DDS tape storage device
121 Storage {
122   Name = DDS-4
123   Address = @hostname@                # N.B. Use a fully qualified name here
124   SDPort = 8103
125   Password = "ccV3lVTsQRsdIUGyab0N4sMDavui2hOBkmpBU0aQKOr9"          # password for Storage daemon
126   Device = DDS-4                      # must be same as Device in Storage daemon
127   Media Type = DDS-4                  # must be same as MediaType in Storage daemon
128   Maximum Concurrent Jobs = 4
129 # Autochanger = yes
130 }
131
132
133 # Generic catalog service
134 Catalog {
135   Name = MyCatalog
136   dbname = bacula; user = bacula; password = ""
137 }
138
139 # Reasonable message delivery -- send most everything to email address
140 #  and to the console
141 Messages {
142   Name = Standard
143   mailcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
144   operatorcommand = "@sbindir@/bsmtp -h localhost -f \"\(Bacula Regression\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
145   MailOnError = @job_email@ = all, !terminate
146   operator = @job_email@ = mount
147   console = all, !skipped, !terminate, !restored
148 #
149 # WARNING! the following will create a file that you must cycle from
150 #          time to time as it will grow indefinitely. However, it will
151 #          also keep all your messages if the scroll off the console.
152 #
153   append = "@working_dir@/log" = all, !skipped
154 }
155
156 #
157 # Message delivery for daemon messages (no job).
158 Messages {
159   Name = Daemon
160   mailcommand = "@sbindir@/bsmtp -h @smtp_host@ -f \"\(Bacula\) %r\" -s \"Bacula daemon message\" %r"
161   mail = @job_email@ = all, !skipped            
162   console = all, !skipped, !saved
163   append = "@working_dir@/log" = all, !skipped
164 }
165
166     
167 # Default pool definition
168 Pool {
169   Name = Default
170   Pool Type = Backup
171   Recycle = yes                       # Bacula can automatically recycle Volumes
172   AutoPrune = yes                     # Prune expired volumes
173   Volume Retention = 365d             # one year
174   Accept Any Volume = yes             # write on any volume in the pool
175 }
176
177 Pool {
178   Name = Full
179   Pool Type = Backup
180   Recycle = yes                       # Bacula can automatically recycle Volumes
181   AutoPrune = yes                     # Prune expired volumes
182   Volume Retention = 365d             # one year
183   Accept Any Volume = yes             # write on any volume in the pool
184 }
185
186 Pool {
187   Name = Inc
188   Pool Type = Backup
189   Recycle = yes                       # Bacula can automatically recycle Volumes
190   AutoPrune = yes                     # Prune expired volumes
191   Volume Retention = 365d             # one year
192   Accept Any Volume = yes             # write on any volume in the pool
193 }