File: faubackup.conf

package info (click to toggle)
faubackup 0.5.9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 704 kB
  • ctags: 80
  • sloc: sh: 2,609; ansic: 926; makefile: 57
file content (30 lines) | stat: -rw-r--r-- 751 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Configuration for faubackup
package FAUBACKUP;


# default directory for backups
# MACHINE is replaced by the machines hostname
# DIR is replaced by the source directory, with '/' made '-'
#$backup	= "/backup/MACHINE/DIR"; # <-- to use one directory per host
$backup		= "/backup/MACHINE:DIR";

# should new backup destination directories be created automatically?
$autocreate	= 1;

# keep old backups for that long:
# (0 means: only keep a backup for current year/month/etc.,
# -1 means: don't store backups for that year/month/etc.)
$keepyears	= 2;
$keepmonths	= 12;
$keepweeks	= 4;
$keepdays	= 7;

# files to ignore
#@ignore = qw( **.o **/cache **/Cache **/nobackup );

# use this command for remote commands
$rsh		= "rsh";


# make perl happy
1;