]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/dird/bacula-dir.conf.in
Tweak Makefiles + add logrotate to autostart install + start bacula service on WinXP...
[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   JobDefs = "DefaultJob"
68   Type = Restore
69   Where = /tmp/bacula-restores
70 }
71
72
73 # List of files to be backed up
74 FileSet {
75   Name = "Full Set"
76   Include = signature=MD5 { 
77 #    
78 #  Put your list of files here, one per line or include an
79 #    external list with:
80 #
81 #    <file-name
82 #
83 #  Note: / backs up everything on the root partition.
84 #    if you have other partitons such as /usr or /home
85 #    you will probably want to add them too.
86 #
87 #  By default this is defined to point to the Bacula build
88 #    directory to give a reasonable FileSet to backup to
89 #    disk storage during initial testing.
90 #
91     @BUILD_DIR@
92   }
93
94 #
95 # If you backup the root directory, the following two excluded
96 #   files can be useful
97 #
98   Exclude = { /proc /tmp /.journal /.fsck }
99 }
100
101 #
102 # When to do the backups, full backup on first sunday of the month,
103 #  differential (i.e. incremental since full) every other sunday,
104 #  and incremental backups other days
105 Schedule {
106   Name = "WeeklyCycle"
107   Run = Full 1st sun at 1:05
108   Run = Differential 2nd-5th sun at 1:05
109   Run = Incremental mon-sat at 1:05
110 }
111
112 # This schedule does the catalog. It starts after the WeeklyCycle
113 Schedule {
114   Name = "WeeklyCycleAfterBackup"
115   Run = Full sun-sat at 1:10
116 }
117
118 # This is the backup of the catalog
119 FileSet {
120   Name = "Catalog"
121   Include = signature=MD5 {
122      @working_dir@/bacula.sql
123   }
124 }
125
126 # Client (File Services) to backup
127 Client {
128   Name = @hostname@-fd
129   Address = @hostname@
130   FDPort = @fd_port@
131   Catalog = MyCatalog
132   Password = "@fd_password@"          # password for FileDaemon
133   File Retention = 30 days            # 30 days
134   Job Retention = 6 months            # six months
135   AutoPrune = yes                     # Prune expired Jobs/Files
136 }
137
138 # Definiton of file storage device
139 Storage {
140   Name = File
141   Address = @hostname@                # N.B. Use a fully qualified name here
142   SDPort = @sd_port@
143   Password = "@sd_password@"
144   Device = FileStorage
145   Media Type = File
146 }
147
148
149 # Definition of DDS tape storage device
150 #Storage {
151 #  Name = DDS-4    
152 #  Address = @hostname@                # N.B. Use a fully qualified name here
153 #  SDPort = @sd_port@
154 #  Password = "@sd_password@"          # password for Storage daemon
155 #  Device = DDS-4                      # must be same as Device in Storage daemon
156 #  Media Type = DDS-4                  # must be same as MediaType in Storage daemon
157 #}
158
159 # Definition of 8mm tape storage device
160 #Storage {
161 #  Name = "8mmDrive"
162 #  Address = @hostname@                # N.B. Use a fully qualified name here
163 #  SDPort = @sd_port@
164 #  Password = "@sd_password@"
165 #  Device = "Exabyte 8mm"
166 #  MediaType = "8mm"
167 #}
168
169
170 # Generic catalog service
171 Catalog {
172   Name = MyCatalog
173   dbname = bacula; user = bacula; password = ""
174 }
175
176 # Reasonable message delivery -- send most everything to email address
177 #  and to the console
178 Messages {
179   Name = Standard
180 #
181 # NOTE! If you send to two email or more email addresses, you will need
182 #  to replace the %r in the from field (-f part) with a single valid
183 #  email address in both the mailcommand and the operatorcommand.
184 #
185   mailcommand = "@sbindir@/bsmtp -h @smtp_host@ -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
186   operatorcommand = "@sbindir@/bsmtp -h @smtp_host@ -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
187   mail = @job_email@ = all, !skipped            
188   operator = @job_email@ = mount
189   console = all, !skipped, !saved
190 #
191 # WARNING! the following will create a file that you must cycle from
192 #          time to time as it will grow indefinitely. However, it will
193 #          also keep all your messages if they scroll off the console.
194 #
195   append = "@working_dir@/log" = all, !skipped
196 }
197     
198 # Default pool definition
199 Pool {
200   Name = Default
201   Pool Type = Backup
202   Recycle = yes                       # Bacula can automatically recycle Volumes
203   AutoPrune = yes                     # Prune expired volumes
204   Volume Retention = 365 days         # one year
205   Accept Any Volume = yes             # write on any volume in the pool
206 }