klecker: remove acpi dmesg noise
[mirror/dsa-puppet.git] / modules / bacula / templates / bacula-dir.conf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5 ##
6 #  For Bacula release 5.0.1 (24 February 2010) -- debian 5.0.4
7
8 ########################################################################
9 # Bacula Director itself                                               #
10 ########################################################################
11
12 Director {
13   Name = <%= @bacula_director_name %>
14   Description = <%= @hostname %> - <%= @domain %> Bacula Director
15   QueryFile = "/etc/bacula/scripts/query.sql"
16   WorkingDirectory = "/var/lib/bacula"
17   PidDirectory = "/var/run/bacula"
18   Maximum Concurrent Jobs = 20
19   Password = "<%= @bacula_director_secret %>"
20   Messages = Daemon
21   DirAddresses = {
22      # Always have localhost in, then the configured IP
23      ip = { addr = 127.0.0.1; port = 9101 }
24          ip = { addr = <%=@bacula_director_address%>; port = <%=@bacula_director_port%> }
25   }
26
27   TLS Enable = yes
28   TLS Require = yes
29   TLS Verify Peer = yes
30   TLS Allowed CN = "clientcerts/<%= @bacula_director_address %>"
31   TLS CA Certificate File = "<%= @bacula_ca_path %>"
32   # This is a server certificate, used for incoming console connections.
33   TLS Certificate = "<%= @bacula_ssl_server_cert %>"
34   TLS Key = "<%= @bacula_ssl_server_key %>"
35
36   Heartbeat Interval = 60
37 }
38
39 ########################################################################
40 # Standard Fileset                                                     #
41 ########################################################################
42 FileSet {
43   Name = "Standard Set"
44   Ignore FileSet Changes = yes
45   Include {
46     Options {
47       signature = SHA1
48       compression = GZIP9
49       aclsupport = yes
50       xattrsupport = yes
51     }
52     Options {
53       wild = "/swapfile*"
54       exclude = yes
55     }
56     File = "\\|/usr/local/sbin/bacula-backup-dirs"
57     # Dont backup directories that contain .nobackup files
58     Exclude Dir Containing = .nobackup
59   }
60
61   Exclude {
62     File = /.fsck
63     File = /.journal
64     File = /dev
65     File = /home/buildd/build-trees
66     File = /lib/init/rw
67     File = /nonexistant
68     File = /proc
69     File = /srv/chroot
70     File = /sys
71     File = /tmp
72     File = /srv/apache-cache/mod_cache_disk
73     File = /var/cache/apache2/mod_cache_disk
74     File = /var/cache/apt
75     File = /var/lib/apt
76     File = /var/lib/bacula
77     File = /var/lib/munin-async
78     File = /var/lock
79     File = /var/log/samhain
80     File = /var/run
81     File = "\\|bash -c 'grep -s -v ^# /etc/bacula/local-exclude || true'"
82   }
83 }
84
85 ########################################################################
86 # A fileset for the catalog, one sql dump of the db                    #
87 ########################################################################
88 FileSet {
89   Name = "Catalog"
90   Include {
91     Options {
92       signature = SHA1
93       #compression = GZIP9
94     }
95     File = "/var/lib/bacula/bacula.sql.gz"
96   }
97 }
98
99 ########################################################################
100 # The job schedules                                                    #
101 ########################################################################
102
103 # When to do the backups, full backup on first sunday of the month,
104 #  differential (i.e. incremental since full) every other sunday,
105 #  and incremental backups other days
106 Schedule {
107   Name = "WeeklyCycle"
108   # fulls are automatically run if the last full backup was 40 days ago
109   # for the current value of 40 look for "Max Full Interval" in this file.
110   # Run = Full 1st sat at 00:35
111   Run = Differential sat at 00:35
112   Run = Incremental sun-fri at 00:35
113 }
114
115 # This schedule does the catalog. It starts after the WeeklyCycle
116 Schedule {
117   Name = "WeeklyCycleAfterBackup"
118   Run = Full sun-sat at 02:10
119 }
120
121 ########################################################################
122 # Generic catalog service                                              #
123 ########################################################################
124 Catalog {
125   Name = MyCatalog
126   dbname = "service = bacula";
127   #DB Address = "<%= @bacula_db_address %>";
128   #DB Port = <%= @bacula_db_port %>;
129   dbuser = "bacula";
130   dbpassword = "<%= @bacula_db_secret %>"
131 }
132
133 ########################################################################
134 # Message delivery                                                     #
135 ########################################################################
136 Messages {
137   Name = Standard
138   mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
139   operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
140   #mail on error = <%= @bacula_operator_email %> = all, !skipped
141   mail = <%= @bacula_operator_email %> = all
142   operator = <%= @bacula_operator_email %> = mount
143   console = all, !skipped, !saved
144   append = "/var/lib/bacula/log" = all
145   catalog = all
146 }
147
148 # Message delivery for daemon messages (no job).
149 Messages {
150   Name = Daemon
151   mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula daemon message\" %r"
152   mail = <%= @bacula_operator_email %> = all
153   console = all, !skipped, !saved
154   append = "/var/lib/bacula/log" = all
155 }
156
157 ########################################################################
158 # Console, limited                                                     #
159 ########################################################################
160 Console {
161   Name = <%= @bacula_monitor_name %>
162   Password = "<%= @bacula_monitor_secret %>"
163   CommandACL = status, .status
164 }
165
166 ########################################################################
167 # Jobdefinitions with defaults and stuff                               #
168 ########################################################################
169 JobDefs {
170   Name = "Standardbackup"
171   Type = Backup
172   Level = Incremental
173   FileSet = "Standard Set"
174   Accurate = yes
175   Schedule = "WeeklyCycle"
176   Messages = Standard
177   Max Full Interval = 40 days
178   Priority = 10
179   Write Bootstrap = "/var/lib/bacula/%c.bsr"
180   Maximum Concurrent Jobs = 20
181   Client Run After Job = "/usr/local/sbin/postbaculajob -c \"%c\" -d \"%d\" -i \"%i\" -l \"%l\" -n \"%n\" -o /var/log/bacula/client-after.state"
182 }
183
184 ########################################################################
185 # Standard Restore template, to be changed by Console program          #
186 #  Only one such job is needed for all Jobs/Clients/Storage ...        #
187 ########################################################################
188 Job {
189   Name = "RestoreFiles"
190   Type = Restore
191   Client = <%=@bacula_director_address%>-fd
192   FileSet = "Standard Set"
193   Pool = poolfull-<%=@bacula_pool_name%>-<%=@bacula_director_address%>
194   Messages = Standard
195   Where = /var/tmp/bacula-restores
196 }
197
198
199 # Scratch pool definition
200 Pool {
201   Name = Scratch
202   Pool Type = Backup
203 }
204
205 ########################################################################
206 # Generic jobs                                                         #
207 ########################################################################
208 # Backup the catalog database (after the nightly save)
209 Storage {
210   Name = "<%= @bacula_filestor_name %>-catalog"
211   Address = <%= @bacula_storage_address %>
212   SDPort = <%= @bacula_storage_port %>
213   Password = "<%= @bacula_storage_secret %>"
214   Device = "<%= @bacula_filestor_device %>-catalog"
215   Media Type = "<%= @bacula_filestor_name %>-catalog"
216   Maximum Concurrent Jobs = 10
217
218   TLS Enable = yes
219   TLS Require = yes
220   TLS CA Certificate File = "<%= @bacula_ca_path %>"
221   # This is a client certificate, used by the director to connect to the storage daemon
222   TLS Certificate = "<%= @bacula_ssl_client_cert %>"
223   TLS Key = "<%= @bacula_ssl_client_key %>"
224 }
225 Pool {
226   Name = "poolcatalog-<%=@bacula_pool_name%>"
227   Pool Type = Backup
228   Storage = "<%=@bacula_filestor_name%>-catalog"
229   AutoPrune = yes
230   Volume Retention = 2 months
231   Label Format = "<%= @bacula_pool_name %>-catalog.${Year}-${Month:p/2/0/r}-${Day:p/2/0/r}_${Hour:p/2/0/r}:${Minute:p/2/0/r}"
232   Volume Use Duration = 23h
233   Maximum Volume Jobs = 1
234   Maximum Volume Bytes = 500G
235   Action On Purge = Truncate
236   Recycle = yes
237   RecyclePool = "poolcataloggraveyard-<%=@bacula_pool_name%>"
238 }
239 Pool {
240   Name = "poolcataloggraveyard-<%=@bacula_pool_name%>"
241   Pool Type = Backup
242   Storage = "<%=@bacula_filestor_name%>-catalog"
243   Recycle = yes
244   RecyclePool = "poolcataloggraveyard-<%=@bacula_pool_name%>"
245 }
246
247 Job {
248   Name = "BackupCatalog"
249   JobDefs = "Standardbackup"
250   Client = <%=@bacula_director_address%>-fd
251   Level = Full
252   FileSet = "Catalog"
253   Schedule = "WeeklyCycleAfterBackup"
254 #  # This creates an ASCII copy of the catalog
255 #  # Arguments to make_catalog_backup.pl are:
256 #  #  make_catalog_backup.pl <catalog-name>
257   RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog"
258 #  # This deletes the copy of the catalog
259   RunAfterJob  = "/etc/bacula/scripts/delete_catalog_backup"
260   Write Bootstrap = "/var/lib/bacula/%n.bsr"
261   Priority = 15    # run after main backup
262   Pool = "poolcatalog-<%=@bacula_pool_name%>"
263 }
264
265 ########################################################################
266 # And now include all the generated configs                            #
267 ########################################################################
268 @|"sh -c 'for f in /etc/bacula/conf.d/*.conf ; do echo @${f} ; done'"