]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/bacula-dir.conf.in
Jobq.c race bug fixed + minor updates
[bacula/bacula] / bacula / src / dird / 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 @VERSION@ (@DATE@) -- @DISTNAME@ @DISTVER@
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 = @dir_port@                # where we listen for UA connections
18   QueryFile = "@scriptdir@/query.sql"
19   WorkingDirectory = "@working_dir@"
20   PidDirectory = "@piddir@"
21   Maximum Concurrent Jobs = 1
22   Password = "@dir_password@"         # Console password
23   Messages = Standard
24 }
25
26 JobDefs {
27   Name = "DefaultJob"
28   Type = Backup
29   Level = Incremental
30   Client = @hostname@-fd 
31   FileSet = "Full Set"
32   Schedule = "WeeklyCycle"
33   Storage = File
34   Messages = Standard
35   Pool = Default
36   Priority = 10
37 }
38
39
40 #
41 # Define the main nightly save backup job
42 #   By default, this job will back up to disk in /tmp
43 Job {
44   Name = "Client1"
45   JobDefs = "DefaultJob"
46   Write Bootstrap = "@working_dir@/Client1.bsr"
47 }
48
49 # Backup the catalog database (after the nightly save)
50 Job {
51   Name = "BackupCatalog"
52   JobDefs = "DefaultJob"
53   Level = Full
54   FileSet="Catalog"
55   Schedule = "WeeklyCycleAfterBackup"
56   # This creates an ASCII copy of the catalog
57   RunBeforeJob = "@scriptdir@/make_catalog_backup -u bacula"
58   # This deletes the copy of the catalog
59   RunAfterJob  = "@scriptdir@/delete_catalog_backup"
60   Write Bootstrap = "@working_dir@/BackupCatalog.bsr"
61   Priority = 11                   # run after main backup
62 }
63
64 # Standard Restore template, to be changed by Console program
65 Job {
66   Name = "RestoreFiles"
67   Type = Restore
68   Client=@hostname@-fd                 
69   FileSet="Full Set"                  
70   Storage = File                      
71   Pool = Default
72   Messages = Standard
73   Where = /tmp/bacula-restores
74 }
75
76
77 # List of files to be backed up
78 FileSet {
79   Name = "Full Set"
80   Include = signature=MD5 { 
81 #    
82 #  Put your list of files here, one per line or include an
83 #    external list with:
84 #
85 #    <file-name
86 #
87 #  Note: / backs up everything on the root partition.
88 #    if you have other partitons such as /usr or /home
89 #    you will probably want to add them too.
90 #
91 #  By default this is defined to point to the Bacula build
92 #    directory to give a reasonable FileSet to backup to
93 #    disk storage during initial testing.
94 #
95     @BUILD_DIR@
96   }
97
98 #
99 # If you backup the root directory, the following two excluded
100 #   files can be useful
101 #
102   Exclude = { /proc /tmp /.journal /.fsck }
103 }
104
105 #
106 # When to do the backups, full backup on first sunday of the month,
107 #  differential (i.e. incremental since full) every other sunday,
108 #  and incremental backups other days
109 Schedule {
110   Name = "WeeklyCycle"
111   Run = Full 1st sun at 1:05
112   Run = Differential 2nd-5th sun at 1:05
113   Run = Incremental mon-sat at 1:05
114 }
115
116 # This schedule does the catalog. It starts after the WeeklyCycle
117 Schedule {
118   Name = "WeeklyCycleAfterBackup"
119   Run = Full sun-sat at 1:10
120 }
121
122 # This is the backup of the catalog
123 FileSet {
124   Name = "Catalog"
125   Include = signature=MD5 {
126      @working_dir@/bacula.sql
127   }
128 }
129
130 # Client (File Services) to backup
131 Client {
132   Name = @hostname@-fd
133   Address = @hostname@
134   FDPort = @fd_port@
135   Catalog = MyCatalog
136   Password = "@fd_password@"          # password for FileDaemon
137   File Retention = 30 days            # 30 days
138   Job Retention = 6 months            # six months
139   AutoPrune = yes                     # Prune expired Jobs/Files
140 }
141
142 # Definiton of file storage device
143 Storage {
144   Name = File
145   Address = @hostname@                # N.B. Use a fully qualified name here
146   SDPort = @sd_port@
147   Password = "@sd_password@"
148   Device = FileStorage
149   Media Type = File
150 }
151
152
153 # Definition of DDS tape storage device
154 #Storage {
155 #  Name = DDS-4    
156 #  Address = @hostname@                # N.B. Use a fully qualified name here
157 #  SDPort = @sd_port@
158 #  Password = "@sd_password@"          # password for Storage daemon
159 #  Device = DDS-4                      # must be same as Device in Storage daemon
160 #  Media Type = DDS-4                  # must be same as MediaType in Storage daemon
161 #}
162
163 # Definition of 8mm tape storage device
164 #Storage {
165 #  Name = "8mmDrive"
166 #  Address = @hostname@                # N.B. Use a fully qualified name here
167 #  SDPort = @sd_port@
168 #  Password = "@sd_password@"
169 #  Device = "Exabyte 8mm"
170 #  MediaType = "8mm"
171 #}
172
173
174 # Generic catalog service
175 Catalog {
176   Name = MyCatalog
177   dbname = bacula; user = bacula; password = ""
178 }
179
180 # Reasonable message delivery -- send most everything to email address
181 #  and to the console
182 Messages {
183   Name = Standard
184 #
185 # NOTE! If you send to two email or more email addresses, you will need
186 #  to replace the %r in the from field (-f part) with a single valid
187 #  email address in both the mailcommand and the operatorcommand.
188 #
189   mailcommand = "@sbindir@/bsmtp -h @smtp_host@ -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
190   operatorcommand = "@sbindir@/bsmtp -h @smtp_host@ -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
191   mail = @job_email@ = all, !skipped            
192   operator = @job_email@ = mount
193   console = all, !skipped, !saved
194 #
195 # WARNING! the following will create a file that you must cycle from
196 #          time to time as it will grow indefinitely. However, it will
197 #          also keep all your messages if they scroll off the console.
198 #
199   append = "@working_dir@/log" = all, !skipped
200 }
201     
202 # Default pool definition
203 Pool {
204   Name = Default
205   Pool Type = Backup
206   Recycle = yes                       # Bacula can automatically recycle Volumes
207   AutoPrune = yes                     # Prune expired volumes
208   Volume Retention = 365 days         # one year
209   Accept Any Volume = yes             # write on any volume in the pool
210 }