ff5090ec9d419f72b31226f1daaf9d501a2696cc
[BackupPC.git] / conf / config.pl
1 #============================================================= -*-perl-*-
2 #
3 # Configuration file for BackupPC.
4 #
5 # DESCRIPTION
6 #
7 #   This is the main configuration file for BackupPC.
8 #
9 #   This file must be valid perl source, so make sure the punctuation,
10 #   quotes, and other syntax are valid.
11 #
12 #   This file is read by BackupPC at startup, when a HUP (-1) signal
13 #   is sent to BackupPC and also at each wakeup time whenever the
14 #   modification time of this file changes.
15 #
16 #   The configuration parameters are divided into four general groups.
17 #   The first group (general server configuration) provides general
18 #   configuration for BackupPC.  The next two groups describe what
19 #   to backup, when to do it, and how long to keep it.  The fourth
20 #   group are settings for the CGI http interface.
21 #
22 #   Configuration settings can also be specified on a per-PC basis.
23 #   Simply put the relevant settings in a config.pl file in the
24 #   PC's backup directory (ie: in __TOPDIR__/pc/hostName).
25 #   All configuration settings in the second, third and fourth
26 #   groups can be overridden by the per-PC config.pl file.
27 #
28 # AUTHOR
29 #   Craig Barratt  <cbarratt@users.sourceforge.net>
30 #
31 # COPYRIGHT
32 #   Copyright (C) 2001-2003  Craig Barratt
33 #
34 #   See http://backuppc.sourceforge.net.
35 #
36 #========================================================================
37
38 ###########################################################################
39 # General server configuration
40 ###########################################################################
41 #
42 # Host name on which the BackupPC server is running.
43 #
44 $Conf{ServerHost} = '';
45
46 #
47 # TCP port number on which the BackupPC server listens for and accepts
48 # connections.  Normally this should be disabled (set to -1).  The TCP
49 # port is only needed if apache runs on a different machine from BackupPC.
50 # In that case, set this to any spare port number over 1024 (eg: 2359).
51 # If you enable the TCP port, make sure you set $Conf{ServerMesgSecret}
52 # too!
53 #
54 $Conf{ServerPort} = -1;
55
56 #
57 # Shared secret to make the TCP port secure.  Set this to a hard to guess
58 # string if you enable the TCP port (ie: $Conf{ServerPort} > 0).
59 #
60 # To avoid possible attacks via the TCP socket interface, every client
61 # message is protected by an MD5 digest. The MD5 digest includes four
62 # items:
63 #   - a seed that is sent to the client when the connection opens
64 #   - a sequence number that increments for each message
65 #   - a shared secret that is stored in $Conf{ServerMesgSecret}
66 #   - the message itself.
67 #
68 # The message is sent in plain text preceded by the MD5 digest.  A
69 # snooper can see the plain-text seed sent by BackupPC and plain-text
70 # message from the client, but cannot construct a valid MD5 digest since
71 # the secret $Conf{ServerMesgSecret} is unknown.  A replay attack is
72 # not possible since the seed changes on a per-connection and
73 # per-message basis.
74 #
75 $Conf{ServerMesgSecret} = '';
76
77 #
78 # PATH setting for BackupPC.  An explicit value is necessary
79 # for taint mode.  Value shouldn't matter too much since
80 # all execs use explicit paths.  However, taint mode in perl
81 # will complain if this directory is world writable.
82 #
83 $Conf{MyPath} = '/bin';
84
85 #
86 # Permission mask for directories and files created by BackupPC.
87 # Default value prevents any access from group other, and prevents
88 # group write.
89 #
90 $Conf{UmaskMode} = 027;
91
92 #
93 # Times at which we wake up, check all the PCs, and schedule necessary
94 # backups.  Times are measured in hours since midnight.  Can be
95 # fractional if necessary (eg: 4.25 means 4:15am).
96 #
97 # If the hosts you are backing up are always connected to the network
98 # you might have only one or two wakeups each night.  This will keep
99 # the backup activity after hours.  On the other hand, if you are backing
100 # up laptops that are only intermittently connected to the network you
101 # will want to have frequent wakeups (eg: hourly) to maximized the chance
102 # that each laptop is backed up.
103 #
104 # Examples:
105 #     $Conf{WakeupSchedule} = [22.5];         # once per day at 10:30 pm.
106 #     $Conf{WakeupSchedule} = [1..23];        # every hour except midnight
107 #     $Conf{WakeupSchedule} = [2,4,6,8,10,12,14,16,18,20,22];  # every 2 hours
108 #
109 # The default value is every hour except midnight.
110 #
111 $Conf{WakeupSchedule} = [1..23];
112
113 #
114 # Maximum number of simultaneous backups to run.  If there
115 # are no user backup requests then this is the maximum number
116 # of simultaneous backups.
117 #
118 $Conf{MaxBackups} = 4;
119
120 #
121 # Additional number of simultaneous backups that users can run.
122 # As many as $Conf{MaxBackups} + $Conf{MaxUserBackups} requests can
123 # run at the same time.
124 #
125 $Conf{MaxUserBackups} = 4;
126
127 #
128 # Maximum number of pending link commands. New backups will only be
129 # started if there are no more than $Conf{MaxPendingCmds} plus
130 # $Conf{MaxBackups} number of pending link commands, plus running jobs.
131 # This limit is to make sure BackupPC doesn't fall too far behind in
132 # running BackupPC_link commands.
133 #
134 $Conf{MaxPendingCmds} = 10;
135
136 #
137 # Maximum number of log files we keep around in log directory.
138 # These files are aged nightly.  A setting of 14 means the log
139 # directory will contain about 2 weeks of old log files, in
140 # particular at most the files LOG, LOG.0, LOG.1, ... LOG.13
141 # (except today's LOG, these files will have a .z extension if
142 # compression is on).
143 #
144 # If you decrease this number after BackupPC has been running for a
145 # while you will have to manually remove the older log files.
146 #
147 $Conf{MaxOldLogFiles} = 14;
148
149 #
150 # Full path to the df command.  Security caution: normal users
151 # should not allowed to write to this file or directory.
152 #
153 $Conf{DfPath} = '/bin/df';
154
155 #
156 # Command to run df.  The following variables are substituted at run-time:
157 #
158 #   $dfPath      path to df ($Conf{DfPath})
159 #   $topDir      top-level BackupPC data directory
160 #
161 $Conf{DfCmd} = '$dfPath $topDir';
162
163 #
164 # Full path to various commands for archiving
165 #
166
167 $Conf{SplitPath} = '/usr/bin/split';
168 $Conf{ParPath}   = '/usr/bin/par';
169 $Conf{CatPath}   = '/bin/cat';
170 $Conf{GzipPath}  = '/bin/gzip';
171 $Conf{Bzip2Path} = '/usr/bin/bzip2';
172
173 #
174 # Maximum threshold for disk utilization on the __TOPDIR__ filesystem.
175 # If the output from $Conf{DfPath} reports a percentage larger than
176 # this number then no new regularly scheduled backups will be run.
177 # However, user requested backups (which are usually incremental and
178 # tend to be small) are still performed, independent of disk usage.
179 # Also, currently running backups will not be terminated when the disk
180 # usage exceeds this number.
181 #
182 $Conf{DfMaxUsagePct} = 95;
183
184 #
185 # How long BackupPC_trashClean sleeps in seconds between each check
186 # of the trash directory.  Once every 5 minutes should be reasonable.
187 #
188 $Conf{TrashCleanSleepSec} = 300;
189
190 #
191 # List of DHCP address ranges we search looking for PCs to backup.
192 # This is an array of hashes for each class C address range.
193 # This is only needed if hosts in the conf/hosts file have the
194 # dhcp flag set.
195 #
196 # Examples:
197 #    # to specify 192.10.10.20 to 192.10.10.250 as the DHCP address pool
198 #    $Conf{DHCPAddressRanges} = [
199 #        {
200 #            ipAddrBase => '192.10.10',
201 #            first => 20,
202 #            last  => 250,
203 #        },
204 #    ];
205 #    # to specify two pools (192.10.10.20-250 and 192.10.11.10-50)
206 #    $Conf{DHCPAddressRanges} = [
207 #        {
208 #            ipAddrBase => '192.10.10',
209 #            first => 20,
210 #            last  => 250,
211 #        },
212 #        {
213 #            ipAddrBase => '192.10.11',
214 #            first => 10,
215 #            last  => 50,
216 #        },
217 #    ];
218 #
219 $Conf{DHCPAddressRanges} = [];
220
221 #
222 # These configuration settings aren't used by BackupPC, but simply
223 # remember a few settings used by configure.pl during installation.
224 # These are used by configure.pl when upgrading to new versions of
225 # BackupPC.
226 #
227 $Conf{BackupPCUser} = '';
228 $Conf{CgiDir}       = '';
229 $Conf{InstallDir}   = '';
230
231 #
232 # Whether BackupPC and the CGI script BackupPC_Admin verify that they
233 # are really running as user $Conf{BackupPCUser}.  If this flag is set
234 # and the effective user id (euid) differs from $Conf{BackupPCUser}
235 # then both scripts exit with an error.  This catches cases where
236 # BackupPC might be accidently started as root or the wrong user,
237 # or if the CGI script is not installed correctly.
238 #
239 $Conf{BackupPCUserVerify} = 1;
240
241 #
242 # Maximum number of hardlinks supported by the $TopDir file system
243 # that BackupPC uses.  Most linux or unix file systems should support
244 # at least 32000 hardlinks per file, or 64000 in other cases.  If a pool
245 # file already has this number of hardlinks, a new pool file is created
246 # so that new hardlinks can be accommodated.  This limit will only
247 # be hit if an identical file appears at least this number of times
248 # across all the backups.
249 #
250 $Conf{HardLinkMax} = 31999;
251
252 ###########################################################################
253 # What to backup and when to do it
254 # (can be overridden in the per-PC config.pl)
255 ###########################################################################
256 #
257 # Name of the host share that is backed up when using SMB.  This can be a
258 # string or an array of strings if there are multiple shares per host.
259 # Examples:
260 #
261 #   $Conf{SmbShareName} = 'c';          # backup 'c' share
262 #   $Conf{SmbShareName} = ['c', 'd'];   # backup 'c' and 'd' shares
263 #
264 # This setting only matters if $Conf{XferMethod} = 'smb'.
265 #
266 $Conf{SmbShareName} = 'C$';
267
268 #
269 # Smbclient share user name.  This is passed to smbclient's -U argument.
270 #
271 # This setting only matters if $Conf{XferMethod} = 'smb'.
272 #
273 $Conf{SmbShareUserName} = '';
274
275 #
276 # Smbclient share password.  This is passed to smbclient via its PASSWD
277 # environment variable.  There are several ways you can tell BackupPC
278 # the smb share password.  In each case you should be very careful about
279 # security.  If you put the password here, make sure that this file is
280 # not readable by regular users!  See the "Setting up config.pl" section
281 # in the documentation for more information.
282 #
283 # This setting only matters if $Conf{XferMethod} = 'smb'.
284 #
285 $Conf{SmbSharePasswd} = '';
286
287 #
288 # Which host directories to backup when using tar transport.  This can be a
289 # string or an array of strings if there are multiple directories to
290 # backup per host.  Examples:
291 #
292 #   $Conf{TarShareName} = '/';                  # backup everything
293 #   $Conf{TarShareName} = '/home';              # only backup /home
294 #   $Conf{TarShareName} = ['/home', '/src'];    # backup /home and /src
295 #
296 # The fact this parameter is called 'TarShareName' is for historical
297 # consistency with the Smb transport options.  You can use any valid
298 # directory on the client: there is no need for it to correspond to
299 # any Smb share or device mount point.
300 #
301 # Note also that you can also use $Conf{BackupFilesOnly} to specify
302 # a specific list of directories to backup.  It's more efficient to
303 # use this option instead of $Conf{TarShareName} since a new tar is
304 # run for each entry in $Conf{TarShareName}.
305 #
306 # On the other hand, if you add --one-file-system to $Conf{TarClientCmd}
307 # you can backup each file system separately, which makes restoring one
308 # bad file system easier.  In this case you would list all of the mount
309 # points here, since you can't get the same result with
310 # $Conf{BackupFilesOnly}:
311 #
312 #     $Conf{TarShareName} = ['/', '/var', '/data', '/boot'];
313 #
314 # This setting only matters if $Conf{XferMethod} = 'tar'.
315 #
316 $Conf{TarShareName} = '/';
317
318 #
319 # Minimum period in days between full backups. A full dump will only be
320 # done if at least this much time has elapsed since the last full dump,
321 # and at least $Conf{IncrPeriod} days has elapsed since the last
322 # successful dump.
323 #
324 # Typically this is set slightly less than an integer number of days. The
325 # time taken for the backup, plus the granularity of $Conf{WakeupSchedule}
326 # will make the actual backup interval a bit longer.
327 #
328 # There are two special values for $Conf{FullPeriod}:
329 #
330 #   -1   Don't do any regular backups on this machine.  Manually
331 #        requested backups (via the CGI interface) will still occur.
332 #
333 #   -2   Don't do any backups on this machine.  Manually requested
334 #        backups (via the CGI interface) will be ignored.
335 #
336 # These special settings are useful for a client that is no longer
337 # being backed up (eg: a retired machine), but you wish to keep the
338 # last backups available for browsing or restoring to other machines.
339 #
340 # Also, you might create a virtual client (by setting $Conf{ClientNameAlias})
341 # for restoring to a DVD or permanent media and you would set
342 # $Conf{FullPeriod} to -2 so that it is never backed up.
343 #
344 $Conf{FullPeriod} = 6.97;
345
346 #
347 # Minimum period in days between incremental backups (a user requested
348 # incremental backup will be done anytime on demand).
349 #
350 # Typically this is set slightly less than an integer number of days. The
351 # time taken for the backup, plus the granularity of $Conf{WakeupSchedule}
352 # will make the actual backup interval a bit longer.
353 #
354 $Conf{IncrPeriod} = 0.97;
355
356 #
357 # Number of full backups to keep.  Must be >= 1.
358 #
359 # In the steady state, each time a full backup completes successfully
360 # the oldest one is removed.  If this number is decreased, the
361 # extra old backups will be removed.
362 #
363 # If filling of incremental dumps is off the oldest backup always
364 # has to be a full (ie: filled) dump.  This might mean one or two
365 # extra full dumps are kept until the oldest incremental backups expire.
366 #
367 # Exponential backup expiry is also supported.  This allows you to specify:
368 #
369 #   - num fulls to keep at intervals of 1 * $Conf{FullPeriod}, followed by
370 #   - num fulls to keep at intervals of 2 * $Conf{FullPeriod},
371 #   - num fulls to keep at intervals of 4 * $Conf{FullPeriod},
372 #   - num fulls to keep at intervals of 8 * $Conf{FullPeriod},
373 #   - num fulls to keep at intervals of 16 * $Conf{FullPeriod},
374 #
375 # and so on.  This works by deleting every other full as each expiry
376 # boundary is crossed.
377 #
378 # Exponential expiry is specified using an array for $Conf{FullKeepCnt}:
379 #
380 #   $Conf{FullKeepCnt} = [4, 2, 3];
381 #
382 # Entry #n specifies how many fulls to keep at an interval of
383 # 2^n * $Conf{FullPeriod} (ie: 1, 2, 4, 8, 16, 32, ...).
384 #
385 # The example above specifies keeping 4 of the most recent full backups
386 # (1 week interval) two full backups at 2 week intervals, and 3 full
387 # backups at 4 week intervals, eg:
388 #
389 #    full 0 19 weeks old   \
390 #    full 1 15 weeks old    >---  3 backups at 4 * $Conf{FullPeriod}
391 #    full 2 11 weeks old   / 
392 #    full 3  7 weeks old   \____  2 backups at 2 * $Conf{FullPeriod}
393 #    full 4  5 weeks old   /
394 #    full 5  3 weeks old   \
395 #    full 6  2 weeks old    \___  4 backups at 1 * $Conf{FullPeriod}
396 #    full 7  1 week old     /
397 #    full 8  current       /
398 #
399 # On a given week the spacing might be less than shown as each backup
400 # ages through each expiry period.  For example, one week later, a
401 # new full is completed and the oldest is deleted, giving:
402 #
403 #    full 0 16 weeks old   \
404 #    full 1 12 weeks old    >---  3 backups at 4 * $Conf{FullPeriod}
405 #    full 2  8 weeks old   / 
406 #    full 3  6 weeks old   \____  2 backups at 2 * $Conf{FullPeriod}
407 #    full 4  4 weeks old   /
408 #    full 5  3 weeks old   \
409 #    full 6  2 weeks old    \___  4 backups at 1 * $Conf{FullPeriod}
410 #    full 7  1 week old     /
411 #    full 8  current       /
412 #
413 # You can specify 0 as a count (except in the first entry), and the
414 # array can be as long as you wish.  For example:
415 #
416 #   $Conf{FullKeepCnt} = [4, 0, 4, 0, 0, 2];
417 #
418 # This will keep 10 full dumps, 4 most recent at 1 * $Conf{FullPeriod},
419 # followed by 4 at an interval of 4 * $Conf{FullPeriod} (approx 1 month
420 # apart), and then 2 at an interval of 32 * $Conf{FullPeriod} (approx
421 # 7-8 months apart).
422 #
423 # Note that you will have to increase $Conf{FullAgeMax} if you want
424 # very old full backups to be kept.  Full backups are removed according
425 # to both $Conf{FullKeepCnt} and $Conf{FullAgeMax}.
426 #
427 # Note also that these two settings are equivalent and both keep just
428 # the four most recent full dumps:
429 #
430 #    $Conf{FullKeepCnt} = 4;
431 #    $Conf{FullKeepCnt} = [4];
432 #
433 $Conf{FullKeepCnt} = 1;
434
435 #
436 # Very old full backups are removed after $Conf{FullAgeMax} days.  However,
437 # we keep at least $Conf{FullKeepCntMin} full backups no matter how old
438 # they are.
439 #
440 $Conf{FullKeepCntMin} = 1;
441 $Conf{FullAgeMax}     = 90;
442
443 #
444 # Number of incremental backups to keep.  Must be >= 1.
445 #
446 # In the steady state, each time an incr backup completes successfully
447 # the oldest one is removed.  If this number is decreased, the
448 # extra old backups will be removed.
449 #
450 $Conf{IncrKeepCnt} = 6;
451
452 #
453 # Very old incremental backups are removed after $Conf{IncrAgeMax} days.
454 # However, we keep at least $Conf{IncrKeepCntMin} incremental backups no
455 # matter how old they are.
456 #
457 $Conf{IncrKeepCntMin} = 1;
458 $Conf{IncrAgeMax}     = 30;
459
460 #
461 # Whether incremental backups are filled.  "Filling" means that the
462 # most recent full (or filled) dump is merged into the new incremental
463 # dump using hardlinks.  This makes an incremental dump look like a
464 # full dump.  Prior to v1.03 all incremental backups were filled.
465 # In v1.4.0 and later the default is off.
466 #
467 # BackupPC, and the cgi interface in particular, do the right thing on
468 # un-filled incremental backups.  It will correctly display the merged
469 # incremental backup with the most recent filled backup, giving the
470 # un-filled incremental backups a filled appearance.  That means it
471 # invisible to the user whether incremental dumps are filled or not.
472 #
473 # Filling backups takes a little extra disk space, and it does cost
474 # some extra disk activity for filling, and later removal.  Filling
475 # is no longer useful, since file mangling and compression doesn't
476 # make a filled backup very useful. It's likely the filling option
477 # will be removed from future versions: filling will be delegated to
478 # the display and extraction of backup data.
479 #
480 # If filling is off, BackupPC makes sure that the oldest backup is
481 # a full, otherwise the following incremental backups will be
482 # incomplete.  This might mean an extra full backup has to be
483 # kept until the following incremental backups expire.
484 #
485 # The default is off.  You can turn this on or off at any
486 # time without affecting existing backups.
487 #
488 $Conf{IncrFill} = 0;
489
490 #
491 # Number of restore logs to keep.  BackupPC remembers information about
492 # each restore request.  This number per client will be kept around before
493 # the oldest ones are pruned.
494 #
495 # Note: files/dirs delivered via Zip or Tar downloads don't count as
496 # restores.  Only the first restore option (where the files and dirs
497 # are written to the host) count as restores that are logged.
498 #
499 $Conf{RestoreInfoKeepCnt} = 10;
500
501 #
502 # Number of archive logs to keep.  BackupPC remembers information
503 # about each archive request.  This number per archive client will
504 # be kept around before the oldest ones are pruned.
505 #
506 $Conf{ArchiveInfoKeepCnt} = 10;
507
508 #
509 # List of directories or files to backup.  If this is defined, only these
510 # directories or files will be backed up.
511 #
512 # For Smb, only one of $Conf{BackupFilesExclude} and $Conf{BackupFilesOnly}
513 # can be specified per share. If both are set for a particular share, then
514 # $Conf{BackupFilesOnly} takes precedence and $Conf{BackupFilesExclude}
515 # is ignored.
516 #
517 # This can be set to a string, an array of strings, or, in the case
518 # of multiple shares, a hash of strings or arrays.  A hash is used
519 # to give a list of directories or files to backup for each share
520 # (the share name is the key).  If this is set to just a string or
521 # array, and $Conf{SmbShareName} contains multiple share names, then
522 # the setting is assumed to apply to only the first share name.
523 #
524 # Examples:
525 #    $Conf{BackupFilesOnly} = '/myFiles';
526 #    $Conf{BackupFilesOnly} = ['/myFiles'];     # same as first example
527 #    $Conf{BackupFilesOnly} = ['/myFiles', '/important'];
528 #    $Conf{BackupFilesOnly} = {
529 #       'c' => ['/myFiles', '/important'],      # these are for 'c' share
530 #       'd' => ['/moreFiles', '/archive'],      # these are for 'd' share
531 #    };
532 #
533 $Conf{BackupFilesOnly} = undef;
534
535 #
536 # List of directories or files to exclude from the backup.  For Smb,
537 # only one of $Conf{BackupFilesExclude} and $Conf{BackupFilesOnly}
538 # can be specified per share.  If both are set for a particular share,
539 # then $Conf{BackupFilesOnly} takes precedence and
540 # $Conf{BackupFilesExclude} is ignored.
541 #
542 # This can be set to a string, an array of strings, or, in the case
543 # of multiple shares, a hash of strings or arrays.  A hash is used
544 # to give a list of directories or files to exclude for each share
545 # (the share name is the key).  If this is set to just a string or
546 # array, and $Conf{SmbShareName} contains multiple share names, then
547 # the setting is assumed to apply to only the first share name.
548 #
549 # The exact behavior is determined by the underlying transport program,
550 # smbclient or tar.  For smbclient the exlclude file list is passed into
551 # the X option.  Simple shell wild-cards using "*" or "?" are allowed.
552 #
553 # For tar, if the exclude file contains a "/" it is assumed to be anchored
554 # at the start of the string.  Since all the tar paths start with "./",
555 # BackupPC prepends a "." if the exclude file starts with a "/".  Note
556 # that GNU tar version >= 1.13.7 is required for the exclude option to
557 # work correctly.  For linux or unix machines you should add
558 # "/proc" to $Conf{BackupFilesExclude} unless you have specified
559 # --one-file-system in $Conf{TarClientCmd} or --one-file-system in
560 # $Conf{RsyncArgs}.  Also, for tar, do not use a trailing "/" in
561 # the directory name: a trailing "/" causes the name to not match
562 # and the directory will not be excluded.
563 #
564 # Users report that for smbclient you should specify a directory
565 # followed by "/*", eg: "/proc/*", instead of just "/proc".
566 #
567 # Examples:
568 #    $Conf{BackupFilesExclude} = '/temp';
569 #    $Conf{BackupFilesExclude} = ['/temp'];     # same as first example
570 #    $Conf{BackupFilesExclude} = ['/temp', '/winnt/tmp'];
571 #    $Conf{BackupFilesExclude} = {
572 #       'c' => ['/temp', '/winnt/tmp'],         # these are for 'c' share
573 #       'd' => ['/junk', '/dont_back_this_up'], # these are for 'd' share
574 #    };
575 #
576 $Conf{BackupFilesExclude} = undef;
577
578 #
579 # PCs that are always or often on the network can be backed up after
580 # hours, to reduce PC, network and server load during working hours. For
581 # each PC a count of consecutive good pings is maintained. Once a PC has
582 # at least $Conf{BlackoutGoodCnt} consecutive good pings it is subject
583 # to "blackout" and not backed up during hours and days specified by
584 # $Conf{BlackoutPeriods}.
585 #
586 # To allow for periodic rebooting of a PC or other brief periods when a
587 # PC is not on the network, a number of consecutive bad pings is allowed
588 # before the good ping count is reset. This parameter is
589 # $Conf{BlackoutBadPingLimit}.
590 #
591 # Note that bad and good pings don't occur with the same interval. If a
592 # machine is always on the network, it will only be pinged roughly once
593 # every $Conf{IncrPeriod} (eg: once per day). So a setting for
594 # $Conf{BlackoutGoodCnt} of 7 means it will take around 7 days for a
595 # machine to be subject to blackout. On the other hand, if a ping is
596 # failed, it will be retried roughly every time BackupPC wakes up, eg,
597 # every one or two hours. So a setting for $Conf{BlackoutBadPingLimit} of
598 # 3 means that the PC will lose its blackout status after 3-6 hours of
599 # unavailability.
600 #
601 # To disable the blackout feature set $Conf{BlackoutGoodCnt} to a negative
602 # value.  A value of 0 will make all machines subject to blackout.  But
603 # if you don't want to do any backups during the day it would be easier
604 # to just set $Conf{WakeupSchedule} to a restricted schedule.
605 #
606 $Conf{BlackoutBadPingLimit} = 3;
607 $Conf{BlackoutGoodCnt}      = 7;
608
609 #
610 # One or more blackout periods can be specified.  If a client is
611 # subject to blackout then no regular (non-manual) backups will
612 # be started during any of these periods.  hourBegin and hourEnd
613 # specify hours fro midnight and weekDays is a list of days of
614 # the week where 0 is Sunday, 1 is Monday etc.
615 #
616 # For example:
617 #
618 #    $Conf{BlackoutPeriods} = [
619 #       {
620 #           hourBegin =>  7.0,
621 #           hourEnd   => 19.5,
622 #           weekDays  => [1, 2, 3, 4, 5],
623 #       },
624 #    ];
625 #
626 # specifies one blackout period from 7:00am to 7:30pm local time
627 # on Mon-Fri.
628 #
629 # The blackout period can also span midnight by setting
630 # hourBegin > hourEnd, eg:
631 #
632 #    $Conf{BlackoutPeriods} = [
633 #       {
634 #           hourBegin =>  7.0,
635 #           hourEnd   => 19.5,
636 #           weekDays  => [1, 2, 3, 4, 5],
637 #       },
638 #       {
639 #           hourBegin => 23,
640 #           hourEnd   =>  5,
641 #           weekDays  => [5, 6],
642 #       },
643 #    ];
644 #
645 # This specifies one blackout period from 7:00am to 7:30pm local time
646 # on Mon-Fri, and a second period from 11pm to 5am on Friday and
647 # Saturday night.
648 #
649 $Conf{BlackoutPeriods} = [
650     {
651         hourBegin =>  7.0,
652         hourEnd   => 19.5,
653         weekDays  => [1, 2, 3, 4, 5],
654     },
655 ];
656
657 #
658 # A backup of a share that has zero files is considered fatal. This is
659 # used to catch miscellaneous Xfer errors that result in no files being
660 # backed up.  If you have shares that might be empty (and therefore an
661 # empty backup is valid) you should set this flag to 0.
662 #
663 $Conf{BackupZeroFilesIsFatal} = 1;
664
665 ###########################################################################
666 # General per-PC configuration settings
667 # (can be overridden in the per-PC config.pl)
668 ###########################################################################
669 #
670 # What transport method to use to backup each host.  If you have
671 # a mixed set of WinXX and linux/unix hosts you will need to override
672 # this in the per-PC config.pl.
673 #
674 # The valid values are:
675 #
676 #   - 'smb':    backup and restore via smbclient and the SMB protocol.
677 #               Best choice for WinXX.
678 #
679 #   - 'rsync':  backup and restore via rsync (via rsh or ssh).
680 #               Best choice for linux/unix.  Can also work on WinXX.
681 #
682 #   - 'rsyncd': backup and restre via rsync daemon on the client.
683 #               Best choice for linux/unix if you have rsyncd running on
684 #               the client.  Can also work on WinXX.
685 #
686 #   - 'tar':    backup and restore via tar, tar over ssh, rsh or nfs.
687 #               Good choice for linux/unix.
688 #
689 $Conf{XferMethod} = 'smb';
690
691 #
692 # Level of verbosity in Xfer log files.  0 means be quiet, 1 will give
693 # will give one line per file, 2 will also show skipped files on
694 # incrementals, higher values give more output.
695 #
696 $Conf{XferLogLevel} = 1;
697
698 #
699 # Full path for smbclient. Security caution: normal users should not
700 # allowed to write to this file or directory.
701 #
702 # smbclient is from the Samba distribution. smbclient is used to
703 # actually extract the incremental or full dump of the share filesystem
704 # from the PC.
705 #
706 # This setting only matters if $Conf{XferMethod} = 'smb'.
707 #
708 $Conf{SmbClientPath} = '/usr/bin/smbclient';
709
710 #
711 # Commands to run smbclient for a full dump, incremental dump or a restore.
712 # This setting only matters if $Conf{XferMethod} = 'smb'.
713 #
714 # The following variables are substituted at run-time:
715 #
716 #    $smbClientPath   same as $Conf{SmbClientPath}
717 #    $host            host to backup/restore
718 #    $hostIP          host IP address
719 #    $shareName       share name
720 #    $userName        user name
721 #    $fileList        list of files to backup (based on exclude/include)
722 #    $I_option        optional -I option to smbclient
723 #    $X_option        exclude option (if $fileList is an exclude list)
724 #    $timeStampFile   start time for incremental dump
725 #
726 # If your smb share is read-only then direct restores will fail.
727 # You should set $Conf{SmbClientRestoreCmd} to undef and the
728 # corresponding CGI restore option will be removed.
729 #
730 $Conf{SmbClientFullCmd} = '$smbClientPath \\\\$host\\$shareName'
731             . ' $I_option -U $userName -E -N -d 1'
732             . ' -c tarmode\\ full -Tc$X_option - $fileList';
733
734 $Conf{SmbClientIncrCmd} = '$smbClientPath \\\\$host\\$shareName'
735             . ' $I_option -U $userName -E -N -d 1'
736             . ' -c tarmode\\ full -TcN$X_option $timeStampFile - $fileList';
737
738 $Conf{SmbClientRestoreCmd} = '$smbClientPath \\\\$host\\$shareName'
739             . ' $I_option -U $userName -E -N -d 1'
740             . ' -c tarmode\\ full -Tx -';
741
742 #
743 # Full command to run tar on the client.  GNU tar is required.  You will
744 # need to fill in the correct paths for ssh2 on the local host (server)
745 # and GNU tar on the client.  Security caution: normal users should not
746 # allowed to write to these executable files or directories.
747 #
748 # See the documentation for more information about setting up ssh2 keys.
749 #
750 # If you plan to use NFS then tar just runs locally and ssh2 is not needed.
751 # For example, assuming the client filesystem is mounted below /mnt/hostName,
752 # you could use something like:
753 #
754 #    $Conf{TarClientCmd} = '$tarPath -c -v -f - -C /mnt/$host/$shareName'
755 #                        . ' --totals';
756 #
757 # In the case of NFS or rsh you need to make sure BackupPC's privileges
758 # are sufficient to read all the files you want to backup.  Also, you
759 # will probably want to add "/proc" to $Conf{BackupFilesExclude}.
760 #
761 # The following variables are substituted at run-time:
762 #
763 #   $host        host name
764 #   $hostIP      host's IP address
765 #   $incrDate    newer-than date for incremental backups
766 #   $shareName   share name to backup (ie: top-level directory path)
767 #   $fileList    specific files to backup or exclude
768 #   $tarPath     same as $Conf{TarClientPath}
769 #   $sshPath     same as $Conf{SshPath}
770 #
771 # If a variable is followed by a "+" it is shell escaped.  This is
772 # necessary for the command part of ssh or rsh, since it ends up
773 # getting passed through the shell.
774 #
775 # This setting only matters if $Conf{XferMethod} = 'tar'.
776 #
777 $Conf{TarClientCmd} = '$sshPath -q -x -n -l root $host'
778                     . ' $tarPath -c -v -f - -C $shareName+'
779                     . ' --totals';
780
781 #
782 # Extra tar arguments for full backups.  Several variables are substituted at
783 # run-time.  See $Conf{TarClientCmd} for the list of variable substitutions.
784 #
785 # If you are running tar locally (ie: without rsh or ssh) then remove the
786 # "+" so that the argument is no longer shell escaped.
787 #
788 # This setting only matters if $Conf{XferMethod} = 'tar'.
789 #
790 $Conf{TarFullArgs} = '$fileList+';
791
792 #
793 # Extra tar arguments for incr backups.  Several variables are substituted at
794 # run-time.  See $Conf{TarClientCmd} for the list of variable substitutions.
795 #
796 # Note that GNU tar has several methods for specifying incremental backups,
797 # including:
798 #
799 #   --newer-mtime $incrDate+
800 #          This causes a file to be included if the modification time is
801 #          later than $incrDate (meaning its contents might have changed).
802 #          But changes in the ownership or modes will not qualify the
803 #          file to be included in an incremental.
804 #
805 #   --newer=$incrDate+
806 #          This causes the file to be included if any attribute of the
807 #          file is later than $incrDate, meaning either attributes or
808 #          the modification time.  This is the default method.  Do
809 #          not use --atime-preserve in $Conf{TarClientCmd} above,
810 #          otherwise resetting the atime (access time) counts as an
811 #          attribute change, meaning the file will always be included
812 #          in each new incremental dump.
813 #
814 # If you are running tar locally (ie: without rsh or ssh) then remove the
815 # "+" so that the argument is no longer shell escaped.
816 #
817 # This setting only matters if $Conf{XferMethod} = 'tar'.
818 #
819 $Conf{TarIncrArgs} = '--newer=$incrDate+ $fileList+';
820
821 #
822 # Full command to run tar for restore on the client.  GNU tar is required.
823 # This can be the same as $Conf{TarClientCmd}, with tar's -c replaced by -x
824 # and ssh's -n removed.
825 #
826 # See $Conf{TarClientCmd} for full details.
827 #
828 # This setting only matters if $Conf{XferMethod} = "tar".
829 #
830 # If you want to disable direct restores using tar, you should set
831 # $Conf{TarClientRestoreCmd} to undef and the corresponding CGI
832 # restore option will be removed.
833 #
834 $Conf{TarClientRestoreCmd} = '$sshPath -q -x -l root $host'
835                    . ' $tarPath -x -p --numeric-owner --same-owner'
836                    . ' -v -f - -C $shareName+';
837
838 #
839 # Full path for tar on the client. Security caution: normal users should not
840 # allowed to write to this file or directory.
841 #
842 # This setting only matters if $Conf{XferMethod} = 'tar'.
843 #
844 $Conf{TarClientPath} = '/bin/tar';
845
846 #
847 # Path to rsync executable on the client
848 #
849 $Conf{RsyncClientPath} = '/bin/rsync';
850
851 #
852 # Full command to run rsync on the client machine.  The following variables
853 # are substituted at run-time:
854 #
855 #        $host           host name being backed up
856 #        $hostIP         host's IP address
857 #        $shareName      share name to backup (ie: top-level directory path)
858 #        $rsyncPath      same as $Conf{RsyncClientPath}
859 #        $sshPath        same as $Conf{SshPath}
860 #        $argList        argument list, built from $Conf{RsyncArgs},
861 #                        $shareName, $Conf{BackupFilesExclude} and
862 #                        $Conf{BackupFilesOnly}
863 #
864 # This setting only matters if $Conf{XferMethod} = 'rsync'.
865 #
866 $Conf{RsyncClientCmd} = '$sshPath -q -x -l root $host $rsyncPath $argList+';
867
868 #
869 # Full command to run rsync for restore on the client.  The following
870 # variables are substituted at run-time:
871 #
872 #        $host           host name being backed up
873 #        $hostIP         host's IP address
874 #        $shareName      share name to backup (ie: top-level directory path)
875 #        $rsyncPath      same as $Conf{RsyncClientPath}
876 #        $sshPath        same as $Conf{SshPath}
877 #        $argList        argument list, built from $Conf{RsyncArgs},
878 #                        $shareName, $Conf{BackupFilesExclude} and
879 #                        $Conf{BackupFilesOnly}
880 #
881 # This setting only matters if $Conf{XferMethod} = 'rsync'.
882 #
883 $Conf{RsyncClientRestoreCmd} = '$sshPath -q -x -l root $host $rsyncPath $argList+';
884
885 #
886 # Share name to backup.  For $Conf{XferMethod} = "rsync" this should
887 # be a file system path, eg '/' or '/home'.
888 #
889 # For $Conf{XferMethod} = "rsyncd" this should be the name of the module
890 # to backup (ie: the name from /etc/rsynd.conf).
891 #
892 # This can also be a list of multiple file system paths or modules.
893 # For example, by adding --one-file-system to $Conf{RsyncArgs} you
894 # can backup each file system separately, which makes restoring one
895 # bad file system easier.  In this case you would list all of the mount
896 # points:
897 #
898 #     $Conf{RsyncShareName} = ['/', '/var', '/data', '/boot'];
899 #
900 $Conf{RsyncShareName} = '/';
901
902 #
903 # Rsync daemon port on the client, for $Conf{XferMethod} = "rsyncd".
904 #
905 $Conf{RsyncdClientPort} = 873;
906
907 #
908 # Rsync daemon user name on client, for $Conf{XferMethod} = "rsyncd".
909 # The user name and password are stored on the client in whatever file
910 # the "secrets file" parameter in rsyncd.conf points to
911 # (eg: /etc/rsyncd.secrets).
912 #
913 $Conf{RsyncdUserName} = '';
914
915 #
916 # Rsync daemon user name on client, for $Conf{XferMethod} = "rsyncd".
917 # The user name and password are stored on the client in whatever file
918 # the "secrets file" parameter in rsyncd.conf points to
919 # (eg: /etc/rsyncd.secrets).
920 #
921 $Conf{RsyncdPasswd} = '';
922
923 #
924 # Whether authentication is mandatory when connecting to the client's
925 # rsyncd.  By default this is on, ensuring that BackupPC will refuse to
926 # connect to an rsyncd on the client that is not password protected.
927 # Turn off at your own risk.
928 #
929 $Conf{RsyncdAuthRequired} = 1;
930
931 #
932 # Arguments to rsync for backup.  Do not edit the first set unless you
933 # have a thorough understanding of how File::RsyncP works.
934 #
935 # Examples of additional arguments that should work are --exclude/--include,
936 # eg:
937 #
938 #     $Conf{RsyncArgs} = [
939 #           # original arguments here
940 #           '-v',
941 #           '--exclude', '/proc',
942 #           '--exclude', '*.tmp',
943 #     ];
944 #
945 $Conf{RsyncArgs} = [
946             #
947             # Do not edit these!
948             #
949             '--numeric-ids',
950             '--perms',
951             '--owner',
952             '--group',
953             '--devices',
954             '--links',
955             '--times',
956             '--block-size=2048',
957             '--recursive',
958             #
959             # Add additional arguments here
960             #
961 ];
962
963 #
964 # Arguments to rsync for restore.  Do not edit the first set unless you
965 # have a thorough understanding of how File::RsyncP works.
966 #
967 # If you want to disable direct restores using rsync (eg: is the module
968 # is read-only), you should set $Conf{RsyncRestoreArgs} to undef and
969 # the corresponding CGI restore option will be removed.
970 #
971 $Conf{RsyncRestoreArgs} = [
972             #
973             # Do not edit these!
974             #
975             "--numeric-ids",
976             "--perms",
977             "--owner",
978             "--group",
979             "--devices",
980             "--links",
981             "--times",
982             "--block-size=2048",
983             "--relative",
984             "--ignore-times",
985             "--recursive",
986             #
987             # Add additional arguments here
988             #
989 ];
990
991 #
992 # Archive Destination
993 #
994 # The Destination of the archive
995 # e.g. /tmp for file archive or /dev/nst0 for device archive
996 #
997 $Conf{ArchiveDest} = '/tmp';
998
999 #
1000 # Archive Compression type
1001 #
1002 # The valid values are:
1003 #
1004 #   - 'none':  No Compression
1005 #
1006 #   - 'gzip':  Medium Compression. Recommended.
1007 #
1008 #   - 'bzip2': High Compression but takes longer.
1009 #
1010 $Conf{ArchiveComp} = 'gzip';
1011
1012 #
1013 # Archive Parity Files
1014 #
1015 # The number of Parity Files to generate.
1016 # Uses the commandline par available from
1017 # http://parchive.sourceforge.net
1018 #
1019 # Only useful for file dumps.
1020 #
1021 # Set to 0 to disable this feature.
1022 #
1023 $Conf{ArchivePar} = 0;
1024
1025 #
1026 # Archive Size Split
1027 #
1028 # Only for file archives. Splits the output into 
1029 # the specified size * 1,000,000.
1030 # e.g. to split into 650,000,000 bytes, specify 650 below.
1031 #
1032 $Conf{ArchiveSplit} = 650;
1033
1034 #
1035 # Archive Command
1036 #
1037 # This is the command that is called to actually run the archive process
1038 # for each host.  The following variables are substituted at run-time:
1039 #
1040 #   $Installdir    The installation directory of BackupPC
1041 #   $tarCreatePath The path to BackupPC_tarCreate
1042 #   $splitpath     The path to the split program
1043 #   $parpath       The path to the par program
1044 #   $host          The host to archive
1045 #   $backupnumber  The backup number of the host to archive
1046 #   $compression   The path to the compression program
1047 #   $compext       The extension assigned to the compression type
1048 #   $splitsize     The number of bytes to split archives into
1049 #   $archiveloc    The location to put the archive
1050 #   $parfile       The number of par files to create
1051 #
1052 $Conf{ArchiveClientCmd} = '$Installdir/bin/BackupPC_archiveHost'
1053         . ' $tarCreatePath $splitpath $parpath $host $backupnumber'
1054         . ' $compression $compext $splitsize $archiveloc $parfile *';
1055
1056 #
1057 # Full path for ssh. Security caution: normal users should not
1058 # allowed to write to this file or directory.
1059 #
1060 $Conf{SshPath} = '/usr/bin/ssh';
1061
1062 #
1063 # Full path for nmblookup. Security caution: normal users should not
1064 # allowed to write to this file or directory.
1065 #
1066 # nmblookup is from the Samba distribution. nmblookup is used to get the
1067 # netbios name, necessary for DHCP hosts.
1068 #
1069 $Conf{NmbLookupPath} = '/usr/bin/nmblookup';
1070
1071 #
1072 # NmbLookup command.  Given an IP address, does an nmblookup on that
1073 # IP address.  The following variables are substituted at run-time:
1074 #
1075 #   $nmbLookupPath      path to nmblookup ($Conf{NmbLookupPath})
1076 #   $host               IP address
1077 #
1078 # This command is only used for DHCP hosts: given an IP address, this
1079 # command should try to find its NetBios name.
1080 #
1081 $Conf{NmbLookupCmd} = '$nmbLookupPath -A $host';
1082
1083 #
1084 # NmbLookup command.  Given a netbios name, finds that host by doing
1085 # a NetBios lookup.  Several variables are substituted at run-time:
1086 #
1087 #   $nmbLookupPath      path to nmblookup ($Conf{NmbLookupPath})
1088 #   $host               NetBios name
1089 #
1090 # In some cases you might need to change the broadcast address, for
1091 # example if nmblookup uses 192.168.255.255 by default and you find
1092 # that doesn't work, try 192.168.1.255 (or your equivalent class C
1093 # address) using the -B option:
1094 #
1095 #    $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath -B 192.168.1.255 $host';
1096 #
1097 # If you use a WINS server and your machines don't respond to
1098 # multicast NetBios requests you can use this (replace 1.2.3.4
1099 # with the IP address of your WINS server):
1100 #
1101 #    $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath -R -U 1.2.3.4 $host';
1102 #
1103 # This is preferred over multicast since it minimizes network traffic.
1104 #
1105 # Experiment manually for your site to see what form of nmblookup command
1106 # works.
1107 #
1108 $Conf{NmbLookupFindHostCmd} = '$nmbLookupPath $host';
1109
1110 #
1111 # For fixed IP address hosts, BackupPC_dump can also verify the netbios
1112 # name to ensure it matches the host name.  An error is generated if
1113 # they do not match.  Typically this flag is off.  But if you are going
1114 # to transition a bunch of machines from fixed host addresses to DHCP,
1115 # setting this flag is a great way to verify that the machines have
1116 # their netbios name set correctly before turning on DCHP.
1117 #
1118 $Conf{FixedIPNetBiosNameCheck} = 0;
1119
1120 #
1121 # Full path to the ping command.  Security caution: normal users
1122 # should not be allowed to write to this file or directory.
1123 #
1124 # If you want to disable ping checking, set this to some program
1125 # that exits with 0 status, eg:
1126 #
1127 #     $Conf{PingPath} = '/bin/echo';
1128 #
1129 $Conf{PingPath} = '/bin/ping';
1130
1131 #
1132 # Ping command.  The following variables are substituted at run-time:
1133 #
1134 #   $pingPath      path to ping ($Conf{PingPath})
1135 #   $host          host name
1136 #
1137 # Wade Brown reports that on solaris 2.6 and 2.7 ping -s returns the wrong
1138 # exit status (0 even on failure).  Replace with "ping $host 1", which
1139 # gets the correct exit status but we don't get the round-trip time.
1140 #
1141 $Conf{PingCmd} = '$pingPath -c 1 $host';
1142
1143 #
1144 # Path to init.d script and command to use that script to start the
1145 # server from the CGI interface.  The following variables are substituted
1146 # at run-time:
1147 #
1148 #   $sshPath           path to ssh ($Conf{SshPath})
1149 #   $serverHost        same as $Conf{ServerHost}
1150 #   $serverInitdPath   path to init.d script ($Conf{ServerInitdPath})
1151 #
1152 # Example:
1153 #
1154 # $Conf{ServerInitdPath}     = '/etc/init.d/backuppc';
1155 # $Conf{ServerInitdStartCmd} = '$sshPath -q -x -l root $serverHost'
1156 #                            . ' $serverInitdPath start'
1157 #                            . ' < /dev/null >& /dev/null';
1158 #
1159 $Conf{ServerInitdPath} = '';
1160 $Conf{ServerInitdStartCmd} = '';
1161
1162 #
1163 # Compression level to use on files.  0 means no compression.  Compression
1164 # levels can be from 1 (least cpu time, slightly worse compression) to
1165 # 9 (most cpu time, slightly better compression).  The recommended value
1166 # is 3.  Changing to 5, for example, will take maybe 20% more cpu time
1167 # and will get another 2-3% additional compression. See the zlib
1168 # documentation for more information about compression levels.
1169 #
1170 # Changing compression on or off after backups have already been done
1171 # will require both compressed and uncompressed pool files to be stored.
1172 # This will increase the pool storage requirements, at least until all
1173 # the old backups expire and are deleted.
1174 #
1175 # It is ok to change the compression value (from one non-zero value to
1176 # another non-zero value) after dumps are already done.  Since BackupPC
1177 # matches pool files by comparing the uncompressed versions, it will still
1178 # correctly match new incoming files against existing pool files.  The
1179 # new compression level will take effect only for new files that are
1180 # newly compressed and added to the pool.
1181 #
1182 # If compression was off and you are enabling compression for the first
1183 # time you can use the BackupPC_compressPool utility to compress the
1184 # pool.  This avoids having the pool grow to accommodate both compressed
1185 # and uncompressed backups.  See the documentation for more information.
1186 #
1187 # Note: compression needs the Compress::Zlib perl library.  If the
1188 # Compress::Zlib library can't be found then $Conf{CompressLevel} is
1189 # forced to 0 (compression off).
1190 #
1191 $Conf{CompressLevel} = 0;
1192
1193 #
1194 # Maximum round-trip ping time in milliseconds.  This threshold is set
1195 # to avoid backing up PCs that are remotely connected through WAN or
1196 # dialup connections.  The output from ping -s (assuming it is supported
1197 # on your system) is used to check the round-trip packet time.  On your
1198 # local LAN round-trip times should be much less than 20msec.  On most
1199 # WAN or dialup connections the round-trip time will be typically more
1200 # than 20msec.  Tune if necessary.
1201 #
1202 $Conf{PingMaxMsec} = 20;
1203
1204 #
1205 # Timeout in seconds when listening for the transport program's
1206 # (smbclient, tar etc) stdout. If no output is received during this
1207 # time, then it is assumed that something has wedged during a backup,
1208 # and the backup is terminated.
1209 #
1210 # Note that stdout buffering combined with huge files being backed up
1211 # could cause longish delays in the output from smbclient that
1212 # BackupPC_dump sees, so in rare cases you might want to increase
1213 # this value.
1214 #
1215 # Despite the name, this parameter sets the timeout for all transport
1216 # methods (tar, smb etc).
1217 #
1218 $Conf{ClientTimeout} = 7200;
1219
1220 #
1221 # Maximum number of log files we keep around in each PC's directory
1222 # (ie: pc/$host).  These files are aged monthly.  A setting of 12
1223 # means there will be at most the files LOG, LOG.0, LOG.1, ... LOG.11
1224 # in the pc/$host directory (ie: about a years worth).  (Except this
1225 # month's LOG, these files will have a .z extension if compression
1226 # is on).
1227 #
1228 # If you decrease this number after BackupPC has been running for a
1229 # while you will have to manually remove the older log files.
1230 #
1231 $Conf{MaxOldPerPCLogFiles} = 12;
1232
1233 #
1234 # Optional commands to run before and after dumps and restores.
1235 # Stdout from these commands will be written to the Xfer (or Restore)
1236 # log file.  One example of using these commands would be to
1237 # shut down and restart a database server, or to dump a database
1238 # to files for backup.  Example:
1239 #
1240 #    $Conf{DumpPreUserCmd} = '$sshPath -q -x -l root $host /usr/bin/dumpMysql';
1241 #
1242 # The following variable substitutions are made at run time for
1243 # $Conf{DumpPreUserCmd} and $Conf{DumpPostUserCmd}:
1244 #
1245 #        $type         type of dump (incr or full)
1246 #        $xferOK       1 if the dump succeeded, 0 if it didn't
1247 #        $client       client name being backed up
1248 #        $host         host name (could be different from client name if
1249 #                                 $Conf{ClientNameAlias} is set)
1250 #        $hostIP       IP address of host
1251 #        $user         user name from the hosts file
1252 #        $moreUsers    list of additional users from the hosts file
1253 #        $share        the first share name
1254 #        $shares       list of all the share names
1255 #        $XferMethod   value of $Conf{XferMethod} (eg: tar, rsync, smb)
1256 #        $sshPath      value of $Conf{SshPath},
1257 #
1258 # The following variable substitutions are made at run time for
1259 # $Conf{RestorePreUserCmd} and $Conf{RestorePostUserCmd}:
1260 #
1261 #        $client       client name being backed up
1262 #        $xferOK       1 if the restore succeeded, 0 if it didn't
1263 #        $host         host name (could be different from client name if
1264 #                                 $Conf{ClientNameAlias} is set)
1265 #        $hostIP       IP address of host
1266 #        $user         user name from the hosts file
1267 #        $moreUsers    list of additional users from the hosts file
1268 #        $share        the first share name
1269 #        $XferMethod   value of $Conf{XferMethod} (eg: tar, rsync, smb)
1270 #        $sshPath      value of $Conf{SshPath},
1271 #        $type         set to "restore"
1272 #        $bkupSrcHost  host name of the restore source
1273 #        $bkupSrcShare share name of the restore source
1274 #        $bkupSrcNum   backup number of the restore source
1275 #        $pathHdrSrc   common starting path of restore source
1276 #        $pathHdrDest  common starting path of destination
1277 #        $fileList     list of files being restored
1278 #
1279 # The following variable substitutions are made at run time for
1280 # $Conf{ArchivePreUserCmd} and $Conf{ArchivePostUserCmd}:
1281 #
1282 #        $client       client name being backed up
1283 #        $xferOK       1 if the archive succeeded, 0 if it didn't
1284 #        $host         Name of the archive host
1285 #        $user         user name from the hosts file
1286 #        $share        the first share name
1287 #        $XferMethod   value of $Conf{XferMethod} (eg: tar, rsync, smb)
1288 #        $HostList     list of hosts being archived
1289 #        $BackupList   list of backup numbers for the hosts being archived
1290 #        $archiveloc   location where the archive is sent to
1291 #        $parfile      number of par files being generated
1292 #        $compression  compression program being used (eg: cat, gzip, bzip2)
1293 #        $compext      extension used for compression type (eg: raw, gz, bz2)
1294 #        $splitsize    size of the files that the archive creates
1295 #        $sshPath      value of $Conf{SshPath},
1296 #        $type         set to "archive"
1297 #
1298 $Conf{DumpPreUserCmd}     = undef;
1299 $Conf{DumpPostUserCmd}    = undef;
1300 $Conf{RestorePreUserCmd}  = undef;
1301 $Conf{RestorePostUserCmd} = undef;
1302 $Conf{ArchivePreUserCmd}  = undef;
1303 $Conf{ArchivePostUserCmd} = undef;
1304
1305 #
1306 # Override the client's host name.  This allows multiple clients
1307 # to all refer to the same physical host.  This should only be
1308 # set in the per-PC config file and is only used by BackupPC at
1309 # the last moment prior to generating the command used to backup
1310 # that machine (ie: the value of $Conf{ClientNameAlias} is invisible
1311 # everywhere else in BackupPC).  The setting can be a host name or
1312 # IP address, eg:
1313 #
1314 #         $Conf{ClientNameAlias} = 'realHostName';
1315 #         $Conf{ClientNameAlias} = '192.1.1.15';
1316 #
1317 # will cause the relevant smb/tar/rsync backup/restore commands to be
1318 # directed to realHostName, not the client name.
1319 #
1320 # Note: this setting doesn't work for hosts with DHCP set to 1.
1321 #
1322 $Conf{ClientNameAlias} = undef;
1323
1324 #
1325 # Advanced option for asking BackupPC to load additional perl modules.
1326 # Can be a list (array ref) of module names to load at startup.
1327 #
1328 $Conf{PerlModuleLoad}     = undef;
1329
1330 ###########################################################################
1331 # Email reminders, status and messages
1332 # (can be overridden in the per-PC config.pl)
1333 ###########################################################################
1334 #
1335 # Full path to the sendmail command.  Security caution: normal users
1336 # should not allowed to write to this file or directory.
1337 #
1338 $Conf{SendmailPath} = '/usr/sbin/sendmail';
1339
1340 #
1341 # Minimum period between consecutive emails to a single user.
1342 # This tries to keep annoying email to users to a reasonable
1343 # level.  Email checks are done nightly, so this number is effectively
1344 # rounded up (ie: 2.5 means a user will never receive email more
1345 # than once every 3 days).
1346 #
1347 $Conf{EMailNotifyMinDays} = 2.5;
1348
1349 #
1350 # Name to use as the "from" name for email.  Depending upon your mail
1351 # handler this is either a plain name (eg: "admin") or a fully-qualified
1352 # name (eg: "admin@mydomain.com").
1353 #
1354 $Conf{EMailFromUserName} = '';
1355
1356 #
1357 # Destination address to an administrative user who will receive a
1358 # nightly email with warnings and errors.  If there are no warnings
1359 # or errors then no email will be sent.  Depending upon your mail
1360 # handler this is either a plain name (eg: "admin") or a fully-qualified
1361 # name (eg: "admin@mydomain.com").
1362 #
1363 $Conf{EMailAdminUserName} = '';
1364
1365 #
1366 # Destination domain name for email sent to users.  By default
1367 # this is empty, meaning email is sent to plain, unqualified
1368 # addresses.  Otherwise, set it to the destintation domain, eg:
1369 #
1370 #    $Cong{EMailUserDestDomain} = '@mydomain.com';
1371 #
1372 # With this setting user email will be set to 'user@mydomain.com'.
1373 #
1374 $Conf{EMailUserDestDomain} = '';
1375
1376 #
1377 # This subject and message is sent to a user if their PC has never been
1378 # backed up.
1379 #
1380 # These values are language-dependent.  The default versions can be
1381 # found in the language file (eg: lib/BackupPC/Lang/en.pm).  If you
1382 # need to change the message, copy it here and edit it, eg:
1383 #
1384 #   $Conf{EMailNoBackupEverMesg} = <<'EOF';
1385 #   To: $user$domain
1386 #   cc:
1387 #   Subject: $subj
1388 #   
1389 #   Dear $userName,
1390 #   
1391 #   This is a site-specific email message.
1392 #   EOF
1393 #
1394 $Conf{EMailNoBackupEverSubj} = undef;
1395 $Conf{EMailNoBackupEverMesg} = undef;
1396
1397 #
1398 # How old the most recent backup has to be before notifying user.
1399 # When there have been no backups in this number of days the user
1400 # is sent an email.
1401 #
1402 $Conf{EMailNotifyOldBackupDays} = 7.0;
1403
1404 #
1405 # This subject and message is sent to a user if their PC has not recently
1406 # been backed up (ie: more than $Conf{EMailNotifyOldBackupDays} days ago).
1407 #
1408 # These values are language-dependent.  The default versions can be
1409 # found in the language file (eg: lib/BackupPC/Lang/en.pm).  If you
1410 # need to change the message, copy it here and edit it, eg:
1411 #
1412 #   $Conf{EMailNoBackupRecentMesg} = <<'EOF';
1413 #   To: $user$domain
1414 #   cc:
1415 #   Subject: $subj
1416 #   
1417 #   Dear $userName,
1418 #   
1419 #   This is a site-specific email message.
1420 #   EOF
1421 #
1422 $Conf{EMailNoBackupRecentSubj} = undef;
1423 $Conf{EMailNoBackupRecentMesg} = undef;
1424
1425 #
1426 # How old the most recent backup of Outlook files has to be before
1427 # notifying user.
1428 #
1429 $Conf{EMailNotifyOldOutlookDays} = 5.0;
1430
1431 #
1432 # This subject and message is sent to a user if their Outlook files have
1433 # not recently been backed up (ie: more than $Conf{EMailNotifyOldOutlookDays}
1434 # days ago).
1435 #
1436 # These values are language-dependent.  The default versions can be
1437 # found in the language file (eg: lib/BackupPC/Lang/en.pm).  If you
1438 # need to change the message, copy it here and edit it, eg:
1439 #
1440 #   $Conf{EMailOutlookBackupMesg} = <<'EOF';
1441 #   To: $user$domain
1442 #   cc:
1443 #   Subject: $subj
1444 #   
1445 #   Dear $userName,
1446 #   
1447 #   This is a site-specific email message.
1448 #   EOF
1449 #
1450 $Conf{EMailOutlookBackupSubj} = undef;
1451 $Conf{EMailOutlookBackupMesg} = undef;
1452
1453 ###########################################################################
1454 # CGI user interface configuration settings
1455 # (can be overridden in the per-PC config.pl)
1456 ###########################################################################
1457 #
1458 # Normal users can only access information specific to their host.
1459 # They can start/stop/browse/restore backups.
1460 #
1461 # Administrative users have full access to all hosts, plus overall
1462 # status and log information.
1463 #
1464 # The administrative users are the union of the unix/linux group
1465 # $Conf{CgiAdminUserGroup} and the manual list of users, separated
1466 # by spaces, in $Conf{CgiAdminUsers}. If you don't want a group or
1467 # manual list of users set the corresponding configuration setting
1468 # to undef or an empty string.
1469 #
1470 # If you want every user to have admin privileges (careful!), set
1471 # $Conf{CgiAdminUsers} = '*'.
1472 #
1473 # Examples:
1474 #    $Conf{CgiAdminUserGroup} = 'admin';
1475 #    $Conf{CgiAdminUsers}     = 'craig celia';
1476 #    --> administrative users are the union of group admin, plus
1477 #      craig and celia.
1478 #
1479 #    $Conf{CgiAdminUserGroup} = '';
1480 #    $Conf{CgiAdminUsers}     = 'craig celia';
1481 #    --> administrative users are only craig and celia'.
1482 #
1483 $Conf{CgiAdminUserGroup} = '';
1484 $Conf{CgiAdminUsers}     = '';
1485
1486 #
1487 # URL of the BackupPC_Admin CGI script.  Used for email messages.
1488 #
1489 $Conf{CgiURL} = undef;
1490
1491 #   
1492 # Language to use.  See lib/BackupPC/Lang for the list of supported
1493 # languages, which include English (en), French (fr), Spanish (es),
1494 # German (de), and Italian (it).
1495 #
1496 # Currently the Language setting applies to the CGI interface and email
1497 # messages sent to users.  Log files and other text are still in English.
1498 #
1499 $Conf{Language} = 'en';
1500
1501 #
1502 # User names that are rendered by the CGI interface can be turned
1503 # into links into their home page or other information about the
1504 # user.  To set this up you need to create two sprintf() strings,
1505 # that each contain a single '%s' that will be replaced by the user
1506 # name.  The default is a mailto: link.
1507 #
1508 # $Conf{CgiUserHomePageCheck} should be an absolute file path that
1509 # is used to check (via "-f") that the user has a valid home page.
1510 # Set this to undef or an empty string to turn off this check.
1511 #
1512 # $Conf{CgiUserUrlCreate} should be a full URL that points to the
1513 # user's home page.  Set this to undef or an empty string to turn
1514 # off generation of URLs for user names.
1515 #
1516 # Example:
1517 #    $Conf{CgiUserHomePageCheck} = '/var/www/html/users/%s.html';
1518 #    $Conf{CgiUserUrlCreate}     = 'http://myhost/users/%s.html';
1519 #    --> if /var/www/html/users/craig.html exists, then 'craig' will
1520 #      be rendered as a link to http://myhost/users/craig.html.
1521 #
1522 $Conf{CgiUserHomePageCheck} = '';
1523 $Conf{CgiUserUrlCreate}     = 'mailto:%s';
1524
1525 #
1526 # Date display format for CGI interface.  True for US-style dates (MM/DD)
1527 # and zero for international dates (DD/MM).
1528 #
1529 $Conf{CgiDateFormatMMDD} = 1;
1530
1531 #
1532 # If set, the complete list of hosts appears in the left navigation
1533 # bar for administrators.  Otherwise, just the hosts for which the
1534 # user is listed in the host file (as either the user or in moreUsers)
1535 # are displayed.
1536 #
1537 $Conf{CgiNavBarAdminAllHosts} = 0;
1538
1539 #
1540 # Hilight colors based on status that are used in the PC summary page.
1541 #
1542 $Conf{CgiStatusHilightColor} = {
1543     Reason_backup_failed           => '#ffcccc',
1544     Reason_backup_done             => '#ccffcc',
1545     Reason_no_ping                 => '#ffff99',
1546     Reason_backup_canceled_by_user => '#ff9900',
1547     Status_backup_in_progress      => '#66cc99',
1548 };
1549
1550 #
1551 # Additional CGI header text.
1552 #
1553 $Conf{CgiHeaders} = '<meta http-equiv="pragma" content="no-cache">';
1554
1555 #
1556 # Directory where images are stored.  This directory should be below
1557 # Apache's DocumentRoot.  This value isn't used by BackupPC but is
1558 # used by configure.pl when you upgrade BackupPC.
1559 #
1560 # Example:
1561 #     $Conf{CgiImageDir} = '/usr/local/apache/htdocs/BackupPC';
1562 #
1563 $Conf{CgiImageDir} = '';
1564
1565 #
1566 # Additional mappings of file name extenions to Content-Type for
1567 # individual file restore.  See $Ext2ContentType in BackupPC_Admin
1568 # for the default setting.  You can add additional settings here,
1569 # or override any default settings.  Example:
1570 #
1571 #     $Conf{CgiExt2ContentType} = {
1572 #                 'pl'  => 'text/plain',
1573 #          };
1574 #
1575 $Conf{CgiExt2ContentType} = { };
1576
1577 #
1578 # URL (without the leading http://host) for BackupPC's image directory.
1579 # The CGI script uses this value to serve up image files.
1580 #
1581 # Example:
1582 #     $Conf{CgiImageDirURL} = '/BackupPC';
1583 #
1584 $Conf{CgiImageDirURL} = '';
1585
1586 #
1587 # CSS stylesheet for the CGI interface.
1588 #
1589 $Conf{CSSstylesheet} = <<'EOF';
1590 <style type="text/css">
1591 body {
1592     font-family:arial,sans-serif;
1593     font-size:1em;
1594     background-color:#ffffff;
1595     margin:2px 5px 0px 2px;
1596     height:100%
1597 }
1598
1599 h1 {
1600     font-family:arial,sans-serif;
1601     font-size:1.5em;
1602     color:#000000
1603 }
1604
1605 h2 {
1606     font-family:arial,sans-serif;
1607     font-size:1em;
1608     color:#000000
1609 }
1610
1611 p {
1612     font-family:arial,sans-serif;
1613     font-size:.9em
1614 }
1615
1616 a {
1617     font-family:arial,sans-serif;
1618     color:#3333ff
1619 }
1620
1621 li {
1622     font-size:.9em;
1623 }
1624
1625 a:hover {
1626     color:#cc0000;
1627     text-decoration:none
1628 }
1629
1630 a.NavCurrent {
1631     font-weight:bold;
1632 }
1633
1634 a.navbar {
1635     padding-left:5px;
1636     padding-right:5px;
1637 }
1638
1639 .h1 {
1640     font-family:arial,sans-serif;
1641     font-size:1.5em;
1642     color:#000000;
1643     font-weight:bold;
1644     background-color:#99cc33;
1645     padding:3px;
1646     padding-left:6px;
1647     margin-bottom:5px;
1648 }
1649
1650 .h2 {
1651     font-family:arial,sans-serif;
1652     font-size:1em;
1653     color:#000000;
1654     font-weight:bold;
1655     background-color:#ddeeee;
1656     padding:3px;
1657     padding-left:6px;
1658     margin-top:3px;
1659     margin-bottom:1px;
1660 }
1661
1662 .tableStnd {
1663 }
1664
1665 .tableheader {
1666     font-size:.8em;
1667     font-weight:bold;
1668     background-color:#cccccc;
1669 }
1670
1671 .border {
1672     font-size:.9em;
1673 }
1674
1675 .fviewheader {
1676     font-weight:bold;
1677     font-size:.8em;
1678     color:#ffffff;
1679     background-color:#999999;
1680 }
1681
1682 .fviewborder {
1683     border-bottom:1px solid #000000;
1684     border-left:1px dotted #666666;
1685     background-color:#dddddd;
1686     font-size:.9em;
1687 }
1688
1689 .fviewon {
1690     background-color:#cccccc;
1691 }
1692
1693 .fviewoff {
1694     background-color:#ffffff;
1695 }
1696
1697 .fview {
1698     font-size:.8em;
1699     font-family:arial,sans-serif;
1700     text-decoration:none;
1701     line-height:15px;
1702 }
1703
1704 .fviewbold {
1705     font-size:.9em;
1706     font-family:arial,sans-serif;
1707     text-decoration:none;
1708     line-height:15px;
1709     font-weight:bold;
1710 }
1711
1712 .histView {
1713     border-bottom:1px solid #000000;
1714     border-left:2px solid #ffffff;
1715     background-color:#dddddd;
1716     font-size:.9em;
1717 }
1718
1719 .histViewMis {
1720     border-bottom:1px solid #000000;
1721     background-color:#ffdddd;
1722 }
1723
1724 div.NavMenu {
1725     width:18%;
1726     margin:0px;
1727     background-color:#ddeeee;
1728 }
1729
1730 div.NavMenu a {
1731     font-size:.8em;
1732     display:block;
1733     margin-left:8px;
1734     padding:2px;
1735 }
1736
1737 div.NavTitle {
1738     padding-left:10px;
1739     background-color:#99cc33;
1740     font-family:arial,sans-serif;
1741     color:#000000;
1742     font-weight:bold;
1743     margin-bottom:2px;
1744 }
1745
1746 #Content {
1747     float:right;
1748     width:80%;
1749     left:20%;
1750     top:10px;
1751     position:absolute;
1752 }
1753 </style>
1754 EOF