Update bacula db location in bacula-dir config
[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 = "/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 = bacula;
127   dbport = 5432;
128   dbaddress = postgresql-manda-01.debian.org;
129   dbsslmode = verify-ca;
130   dbsslca = /etc/ssl/debian/certs/ca.crt;
131   dbuser = "bacula";
132   dbpassword = "<%= @bacula_db_secret %>"
133 }
134
135 ########################################################################
136 # Message delivery                                                     #
137 ########################################################################
138 Messages {
139   Name = Standard
140   mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
141   operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
142   #mail on error = <%= @bacula_operator_email %> = all, !skipped
143   mail = <%= @bacula_operator_email %> = all
144   operator = <%= @bacula_operator_email %> = mount
145   console = all, !skipped, !saved
146   syslog = all
147   append = "/var/lib/bacula/log" = all
148   catalog = all
149 }
150
151 # Message delivery for daemon messages (no job).
152 Messages {
153   Name = Daemon
154   mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula daemon message\" %r"
155   mail = <%= @bacula_operator_email %> = all
156   console = all, !skipped, !saved
157   syslog = all
158   append = "/var/lib/bacula/log" = all
159 }
160
161 ########################################################################
162 # Console, limited                                                     #
163 ########################################################################
164 Console {
165   Name = <%= @bacula_monitor_name %>
166   Password = "<%= @bacula_monitor_secret %>"
167   CommandACL = status, .status
168 }
169
170 ########################################################################
171 # Jobdefinitions with defaults and stuff                               #
172 ########################################################################
173 JobDefs {
174   Name = "Standardbackup"
175   Type = Backup
176   Level = Incremental
177   FileSet = "Standard Set"
178   Accurate = yes
179   # Schedule = "WeeklyCycle"
180   Messages = Standard
181   Max Full Interval = 50 days
182   Priority = 10
183   Write Bootstrap = "/var/lib/bacula/%c.bsr"
184   Maximum Concurrent Jobs = 20
185   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"
186 }
187
188 ########################################################################
189 # Standard Restore template, to be changed by Console program          #
190 #  Only one such job is needed for all Jobs/Clients/Storage ...        #
191 ########################################################################
192 Job {
193   Name = "RestoreFiles"
194   Type = Restore
195   Client = <%=@bacula_director_address%>-fd
196   FileSet = "Standard Set"
197   Pool = poolfull-<%=@bacula_pool_name%>-<%=@bacula_director_address%>
198   Messages = Standard
199   Where = /var/tmp/bacula-restores
200 }
201
202
203 # Scratch pool definition
204 Pool {
205   Name = Scratch
206   Pool Type = Backup
207 }
208
209 ########################################################################
210 # Generic jobs                                                         #
211 ########################################################################
212 # Backup the catalog database (after the nightly save)
213 Storage {
214   Name = "<%= @bacula_filestor_name %>-catalog"
215   Address = <%= @bacula_storage_address %>
216   SDPort = <%= @bacula_storage_port %>
217   Password = "<%= @bacula_storage_secret %>"
218   Device = "<%= @bacula_filestor_device %>-catalog"
219   Media Type = "<%= @bacula_filestor_name %>-catalog"
220   Maximum Concurrent Jobs = 10
221
222   TLS Enable = yes
223   TLS Require = yes
224   TLS CA Certificate File = "<%= @bacula_ca_path %>"
225   # This is a client certificate, used by the director to connect to the storage daemon
226   TLS Certificate = "<%= @bacula_ssl_client_cert %>"
227   TLS Key = "<%= @bacula_ssl_client_key %>"
228 }
229 Pool {
230   Name = "poolcatalog-<%=@bacula_pool_name%>"
231   Pool Type = Backup
232   Storage = "<%=@bacula_filestor_name%>-catalog"
233   AutoPrune = yes
234   Volume Retention = 2 months
235   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}"
236   Volume Use Duration = 23h
237   Maximum Volume Jobs = 1
238   Maximum Volume Bytes = 500G
239   Action On Purge = Truncate
240   Recycle = yes
241   RecyclePool = "poolcataloggraveyard-<%=@bacula_pool_name%>"
242 }
243 Pool {
244   Name = "poolcataloggraveyard-<%=@bacula_pool_name%>"
245   Pool Type = Backup
246   Storage = "<%=@bacula_filestor_name%>-catalog"
247   Recycle = yes
248   RecyclePool = "poolcataloggraveyard-<%=@bacula_pool_name%>"
249 }
250
251 Job {
252   Name = "BackupCatalog"
253   JobDefs = "Standardbackup"
254   Client = <%=@bacula_director_address%>-fd
255   Level = Full
256   FileSet = "Catalog"
257   Schedule = "WeeklyCycleAfterBackup"
258 #  # This creates an ASCII copy of the catalog
259 #  # Arguments to make_catalog_backup.pl are:
260 #  #  make_catalog_backup.pl <catalog-name>
261   RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog"
262 #  # This deletes the copy of the catalog
263   RunAfterJob  = "/etc/bacula/scripts/delete_catalog_backup"
264   Write Bootstrap = "/var/lib/bacula/%n.bsr"
265   Priority = 15    # run after main backup
266   Pool = "poolcatalog-<%=@bacula_pool_name%>"
267 }
268
269 ########################################################################
270 # And now include all the generated configs                            #
271 ########################################################################
272 @|"sh -c 'for f in /etc/bacula/conf.d/*.conf ; do echo @${f} ; done'"