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