This repository was archived by the owner on Apr 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbacula.cf
More file actions
391 lines (333 loc) · 12.3 KB
/
bacula.cf
File metadata and controls
391 lines (333 loc) · 12.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
#####################################################
# Name: bacula.cf #
# Description: Cfengine bundle to automate Bacula #
# configuration process. #
#####################################################
#
# Repos : https://github.com/rd2b/cfenginebacula
#
bundle agent app_bacula {
vars:
any::
# Sets the bacula director:
"baculadirector" string => "back01.acgform.local";
"local_cache" string => "/var/cache/cfengine3/app_bacula";
"baculafolder" string => "/etc/bacula";
"local_bacula" string => "$(local_cache)/$(baculafolder)";
# Sets some passwords needed in Templates
# Those passwords must be overwrited:
"DIRPASSWD" string => "p1BgtT9k4kmr7G8SS7SqXPlWkCFeNmSWu";
"DIRMPASSWD" string => "FTVFNk9NUEEFY7lNwKJKl4NESXBKPtQ2X";
"SDPASSWD" string => "I7uYy8UJ5gacHa-x55QjPKyfPheSQWCUk";
"SDMPASSWD" string => "CfnP_qNDd1QD2kaWHOMiXRD7RJk3dFE55";
"FDPASSWD" string => "HyFo__BaxZGn0IH4uJdzIY_SHnpfqOEYD";
"FDMPASSWD" string => "aSVRFQuJM6jci6fcfLtIfI1QtRKgSkedr";
"directorprocess" string => "/usr/sbin/bacula-dir";
"storageprocess" string => "/usr/sbin/bacula-fd";
"fileprocess" string => "/usr/sbin/bacula-sd";
backupmaster::
"baculaserverpackages" slist => { "bacula-server" };
"baculadisklistdir" string => "/etc/bacula/disklists";
"baculadisklist" string => "$(baculadisklistdir)/default";
"nbdisklist" int => readstringarrayidx(
"disklist", "$(baculadisklist)", "\s*#[^\n]*", "\s+", 3000, 10000);
"disklistindices" slist => getindices("disklist");
"filesets[$(disklist[$(disklistindices)][1])]"
string => canonify("$(disklist[$(disklistindices)][1])");
"serverfilestocopy" slist => {
"$(baculafolder)/bacula-dir.conf",
"$(baculafolder)/bconsole.conf",
"$(baculadisklist)"
};
"serverdirstocopy" slist => {
"/etc/bacula/clients",
"/etc/bacula/jobs",
"/etc/bacula/disklists",
"/etc/bacula/filesets",
"/etc/bacula/schedules"
};
"storagedaemonfile" string => "$(baculafolder)/bacula-sd.conf";
backupclient::
"baculaclientpackages" slist => { "bacula-fd" };
"clientfiledaemon" string => "$(baculafolder)/bacula-fd.conf";
packages:
backupmaster.CFpackages::
"$(baculaserverpackages)"
comment => "install $(baculaserverpackages)",
package_policy => "add",
package_method => generic;
backupclient.CFpackages::
"$(baculaclientpackages)"
comment => "install $(baculaclientpackages)",
package_policy => "add",
package_method => generic;
files:
backupmaster::
"$(storagedaemonfile)"
create => "true",
edit_defaults => empty,
edit_line => do_baculaStorageDaemon(
"$(baculadirector)",
"$(SDPASSWD)",
"$(SDMPASSWD)"
),
comment => "Configuring the storage file $(storagedaemonfile)",
classes => if_repaired("reloadSD");
# Clients files:
"$(local_bacula)/clients/$(disklist[$(disklistindices)][0]).conf"
create => "true",
edit_defaults => empty,
edit_line => do_baculaClient(
"$(disklist[$(disklistindices)][0])",
"$(FDPASSWD)"),
comment => "Configuring the client file $(disklist[$(disklistindices)][0]).conf";
# Filesets files:
"$(local_bacula)/filesets/Fileset$(filesets[$(disklist[$(disklistindices)][1])]).conf"
create => "true",
edit_defaults => empty,
edit_line => do_baculaFileSet("$(disklist[$(disklistindices)][1])"),
comment => "Configuring the fileset file $(disklist[$(disklistindices)][1])";
# Jobs files:
"$(local_bacula)/jobs/$(disklist[$(disklistindices)][0])$(filesets[$(disklist[$(disklistindices)][1])]).conf"
create => "true",
edit_defaults => empty,
edit_line => do_baculaJob(
"$(disklist[$(disklistindices)][0])",
"$(disklist[$(disklistindices)][1])",
"$(disklist[$(disklistindices)][2])"),
comment => "Configuring the job file $(disklist[$(disklistindices)][0])$(filesets[$(disklist[$(disklistindices)][1])]).conf";
# Surcharge avec les fichiers de clients presents dans les depots
"$(local_cache)/$(serverfilestocopy)"
comment => "Copying $(serverfilestocopy)",
copy_from => secure_cp("$(globals.group_path)/groups/backup/$(serverfilestocopy)","$(globals.serverhost)");
"$(local_cache)/$(serverdirstocopy)"
comment => "Copying $(serverdirstocopy)",
copy_from => secure_cp("$(globals.group_path)/groups/backup/$(serverdirstocopy)","$(globals.serverhost)"),
depth_search => recurse("inf");
#################################
# Copying from cache dir to bacula's directory
# Used to detect if changed has been made
"$(baculafolder)"
comment => "Copying $(baculafolder) with $(local_bacula) files",
copy_from => local_cp("$(local_bacula)"),
depth_search => recurse("inf"),
classes => if_repaired("reloadDirector");
#Fixing permissions:
"$(baculafolder)"
perms => promisemode("644");
"$(serverdirstocopy)"
depth_search => recurse("inf"),
perms => promisemode("644");
"$(baculafolder)/scripts"
depth_search => recurse("inf"),
perms => promisemode("755");
backupclient::
"$(clientfiledaemon)"
create => "true",
perms => promisemode("644"),
edit_defaults => empty,
edit_line => do_baculaFileDaemon(
"$(baculadirector)",
"$(FDPASSWD)",
"$(FDMPASSWD)"
),
comment => "Configuring the client file $(clientfiletocopy)",
classes => if_repaired("reloadFD");
processes:
backupmaster::
"$(directorprocess)" restart_class => "restartDirector";
"$(storageprocess)" restart_class => "restartSD";
backupclient::
"$(fileprocess)" restart_class => "restartFD";
commands:
# Basiclly only restarting processes if something as been changed
restartDirector::
"/etc/init.d/bacula-director restart"
comment => "Restarting Bacula Director.";
restartSD::
"/etc/init.d/bacula-sd restart"
comment => "Restarting Bacula Storage-Daemon.";
restartFD::
"/etc/init.d/bacula-fd restart",
comment => "Restarting Bacula File-Daemon.";
reloadDirector::
"/etc/init.d/bacula-director reload"
comment => "Reloading Bacula Director.";
reloadSD::
"/etc/init.d/bacula-sd reload"
comment => "Reloading Bacula Storage-Daemon.";
reloadFD::
"/etc/init.d/bacula-fd reload",
comment => "Reloading Bacula File-Daemon.";
reports:
backupmaster::
"I am backup master";
backupmaster.verbose_mode::
"This is my disklist:";
"$(disklist[$(disklistindices)][0]) $(disklist[$(disklistindices)][1]) $(disklist[$(disklistindices)][2])";
"";
"Those are my filesets:";
"$(filesets[$(disklist[$(disklistindices)][1])]) -> $(disklist[$(disklistindices)][1])";
backupclient::
"I am backup client";
}
#######################################################
# Configure the Client file
# Setting the client name value
# Adding a header to tell the file is configured by Cfengine
#######################################################
bundle edit_line do_baculaClient(clientname, fd_password) {
insert_lines:
"#############################################################
### This file is configured by Cfengine.
### Manually editing the file might lead Cfengine
### to change back its content
#############################################################
# Client (File Services) to backup
Client {
Name = $(clientname)
Address = $(clientname)
FDPort = 9102
Catalog = MyCatalog
Password = \"$(fd_password)\" # password for FileDaemon
File Retention = 30 days # 30 days
Job Retention = 6 months # six months
AutoPrune = yes # Prune expired Jobs/Files
}
";
}
bundle edit_line do_baculaJob(clientname, folder, clientjob) {
vars:
"filesetname" string => canonify("$(folder)");
insert_lines:
"#############################################################
### This file is configured by Cfengine.
### Manually editing the file might lead Cfengine
### to change back its content
#############################################################
Job {
Name = \"$(clientname)$(filesetname)\"
JobDefs = \"$(clientjob)\"
FileSet = \"Fileset$(filesetname)\"
Client = $(clientname)
}
";
}
bundle edit_line do_baculaFileSet(folder) {
vars:
"filesetname" string => canonify("$(folder)");
insert_lines:
"#############################################################
### This file is configured by Cfengine.
### Manually editing the file might lead Cfengine
### to change back its content
#############################################################
FileSet {
Name = \"Fileset$(filesetname)\"
Include {
Options {
signature = MD5
compression = GZIP
}
File = $(folder)
}
Exclude {
}
}
";
}
bundle edit_line do_baculaFileDaemon(directorname, directorpassword, directormonitoringpassword) {
insert_lines:
"#############################################################
### This file is configured by Cfengine.
### Manually editing the file might lead Cfengine
### to change back its content
#############################################################
#
# List Directors who are permitted to contact this File daemon
#
Director {
Name = $(directorname)-dir
Password = \"$(directorpassword)\"
}
#
# Restricted Director, used by tray-monitor to get the
# status of the file daemon
#
Director {
Name = $(directorname)-mon
Password = \"$(directormonitoringpassword)\"
Monitor = yes
}
#
# Global File daemon configuration specifications
#
FileDaemon { # this is me
Name = localhost-fd
FDport = 9102 # where we listen for the director
WorkingDirectory = /var/lib/bacula
Pid Directory = /var/run/bacula
Maximum Concurrent Jobs = 20
}
# Send all messages except skipped files back to Director
Messages {
Name = Standard
director = $(directorname)-dir = all, !skipped, !restored
}
";
}
bundle edit_line do_baculaStorageDaemon(directorname, directorpassword, directormonitoringpassword) {
insert_lines:
"#############################################################
### This file is configured by Cfengine.
### Manually editing the file might lead Cfengine
### to change back its content
#############################################################
#
# List Directors who are permitted to contact this Storage daemon
#
Director {
Name = $(directorname)-dir
Password = \"$(directorpassword)\"
}
#
# Restricted Director, used by tray-monitor to get the
# status of the file daemon
#
Director {
Name = $(directorname)-mon
Password = \"$(directormonitoringpassword)\"
Monitor = yes
}
#
# Global Storage daemon configuration specifications
#
Storage { # this is me
Name = localhost-sd
SDport = 9103 # where we listen for the director
WorkingDirectory = /var/lib/bacula
Pid Directory = /var/run/bacula
Maximum Concurrent Jobs = 20
}
#
# Devices supported by this Storage daemon
# To connect, the Director's bacula-dir.conf must have the
# same Name and MediaType.
#
Device {
Name = FileStorage
Media Type = File
Archive Device = /data/backups
LabelMedia = yes
Random Access = yes
AutomaticMount = yes
RemovableMedia = no
AlwaysOpen = no
}
# Send all messages except skipped files back to Director
Messages {
Name = Standard
director = $(directorname)-dir = all, !skipped, !restored
}
";
}