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