]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/bacula/templates/bacula-dir.conf.erb
no iso9660 backups
[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
37 ########################################################################
38 # Standard Fileset                                                     #
39 ########################################################################
40 FileSet {
41   Name = "Standard Set"
42   Include {
43     Options {
44       signature = SHA1
45       compression = GZIP9
46     }
47     File = "\\|bash -c \"df -Pkl -x tmpfs -x iso9660 | tail -n +2 | awk '{print \$NF}' \""
48     # Dont backup directories that contain .nobackup files
49     Exclude Dir Containing = .nobackup
50   }
51
52   Exclude {
53     File = /var/lib/bacula
54     File = /var/cache/apt/
55     File = /nonexistant
56     File = /proc
57     File = /tmp
58     File = /.journal
59     File = /.fsck
60     File = /sys
61     File = /lib/init/rw
62     File = /var/run
63     File = /var/lock
64     File = /dev
65     File = /srv/chroot
66     File = /home/buildd/build-trees
67   }
68 }
69
70 ########################################################################
71 # A fileset for the catalog, one sql dump of the db                    #
72 ########################################################################
73 FileSet {
74   Name = "Catalog"
75   Include {
76     Options {
77       signature = SHA1
78       compression = GZIP9
79     }
80     File = "/var/lib/bacula/bacula.sql"
81   }
82 }
83
84 ########################################################################
85 # The job schedules                                                    #
86 ########################################################################
87
88 # When to do the backups, full backup on first sunday of the month,
89 #  differential (i.e. incremental since full) every other sunday,
90 #  and incremental backups other days
91 Schedule {
92   Name = "WeeklyCycle"
93   Run = Full 1st sat at 00:35
94   Run = Differential 2nd-5th sat at 00:35
95   Run = Incremental sun-fri at 00:35
96 }
97
98 # This schedule does the catalog. It starts after the WeeklyCycle
99 Schedule {
100   Name = "WeeklyCycleAfterBackup"
101   Run = Full sun-sat at 02:10
102 }
103
104 ########################################################################
105 # Generic catalog service                                              #
106 ########################################################################
107 Catalog {
108   Name = MyCatalog
109   dbname = "service = bacula";
110   #DB Address = "<%= bacula_db_address %>";
111   #DB Port = <%= bacula_db_port %>;
112   dbuser = "bacula";
113   dbpassword = "<%= bacula_db_secret %>"
114 }
115
116 ########################################################################
117 # Message delivery                                                     #
118 ########################################################################
119 Messages {
120   Name = Standard
121   mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: %t %e of %c %l\" %r"
122   operatorcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula: Intervention needed for %j\" %r"
123   mail on error = <%= bacula_operator_email %> = all, !skipped
124   operator = <%= bacula_operator_email %> = mount
125   console = all, !skipped, !saved
126   append = "/var/lib/bacula/log" = all, !skipped
127   catalog = all
128 }
129
130 # Message delivery for daemon messages (no job).
131 Messages {
132   Name = Daemon
133   mailcommand = "/usr/lib/bacula/bsmtp -h localhost -f \"\(Bacula\) %r\" -s \"Bacula daemon message\" %r"
134   mail = <%= bacula_operator_email %> = all, !skipped
135   console = all, !skipped, !saved
136   append = "/var/lib/bacula/log" = all, !skipped
137 }
138
139 ########################################################################
140 # Console, limited                                                     #
141 ########################################################################
142 Console {
143   Name = <%= bacula_monitor_name %>
144   Password = "<%= bacula_monitor_secret %>"
145   CommandACL = status, .status
146 }
147
148 ########################################################################
149 # Jobdefinitions with defaults and stuff                               #
150 ########################################################################
151 JobDefs {
152   Name = "Standardbackup"
153   Type = Backup
154   Level = Incremental
155   FileSet = "Standard Set"
156   Schedule = "WeeklyCycle"
157   Messages = Standard
158   Max Full Interval = 1 month
159   Priority = 10
160   Write Bootstrap = "/var/lib/bacula/%c.bsr"
161   Maximum Concurrent Jobs = 20
162   Client Run After Job = "/usr/local/sbin/postbaculajob -c \"%c\" -d \"%d\" -i \"%i\" -l \"%l\" -n \"%n\" -o /var/log/bacula-main.log"
163 }
164
165 ########################################################################
166 # Standard Restore template, to be changed by Console program          #
167 #  Only one such job is needed for all Jobs/Clients/Storage ...        #
168 ########################################################################
169 Job {
170   Name = "RestoreFiles"
171   Type = Restore
172   Client = <%=bacula_director_address%>-fd
173   FileSet = "Standard Set"
174   Pool = poolfull-<%=bacula_pool_name%>-<%=bacula_director_address%>
175   Messages = Standard
176   Where = /var/tmp/bacula-restores
177 }
178
179
180 # Scratch pool definition
181 Pool {
182   Name = Scratch
183   Pool Type = Backup
184 }
185
186 ########################################################################
187 # Generic jobs                                                         #
188 ########################################################################
189 # Backup the catalog database (after the nightly save)
190 #Job {
191 #  Name = "BackupCatalog"
192 #  JobDefs = "Standardbackup"
193 #  Level = Full
194 #  FileSet="Catalog"
195 #  Schedule = "WeeklyCycleAfterBackup"
196 #  # This creates an ASCII copy of the catalog
197 #  # Arguments to make_catalog_backup.pl are:
198 #  #  make_catalog_backup.pl <catalog-name>
199 #  RunBeforeJob = "/etc/bacula/scripts/make_catalog_backup.pl MyCatalog"
200 #  # This deletes the copy of the catalog
201 #  RunAfterJob  = "/etc/bacula/scripts/delete_catalog_backup"
202 #  Write Bootstrap = "/var/lib/bacula/%n.bsr"
203 #  Priority = 15    # run after main backup
204 #  RunScript {
205 #        RunsWhen=After
206 #           RunsOnClient=No
207 #           Console = "purge volume action=all allpools storage=File"
208 #  }
209 #}
210
211 ########################################################################
212 # And now include all the generated configs                            #
213 ########################################################################
214 @|"sh -c 'for f in /etc/bacula/conf.d/*.conf ; do echo @${f} ; done'"