1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#######################################################
# Configuration file for Backup Service
#
# $Id: backup.conf,v 1.5 2002/06/22 18:33:31 cvs Exp $
#
# Miguel Armas <kuko@maarmas.com>
########################################################
##
## Backup (AMANDA)
##
#if ((ingroup('bckclients'))||(ingroup('bckservers')))
group backup {
#if (ingroup('bckservers'))
##
## Backup Servers
##
file amanda.cron {
source = '<#$picalibconf#>/Backup/amanda.cron';
path = '/etc/cron.d/amanda';
perms = '644';
}
## You should REALLY take a look at amanda.conf
file amanda.conf {
source = '<#$picalibconf#>/Backup/amanda.conf';
path = '/etc/amanda/<#$amcfg#>/amanda.conf';
perms = '640';
uid = '33'; # amanda
gid = '6'; # disk
}
file disklist {
source = '<#$picalibconf#>/Backup/<#$amdisklist#>';
path = '/etc/amanda/<#$amcfg#>/disklist';
uid = '33';
gid = '6';
perms = '640';
}
#fi
##
## DO NOT TOUCH BELOW THIS (UNLESS YOU KNOW WHAT YOU'RE DOING)
##
##
## Common files (servers and clients)
##
## Entries for APTChk
file APTChk.backup {
source = '<#$picalib#>/Backup/APTChk.backup';
path = '<#$picaobj#>/APTChk/APTChk.backup';
perms = '644';
}
## Entries for PermsChk
file PermsChk.backup {
source = '<#$picalib#>/Backup/PermsChk.backup';
path = '<#$picaobj#>/PermsChk/PermsChk.backup';
perms = '644';
}
## Entries for PortChk
file PortChk.backup {
source = '<#$picalib#>/Backup/PortChk.backup';
path = '<#$picaobj#>/PortChk/PortChk.backup';
perms = '644';
}
#if (ingroup('bckclients'))
##
## Backup clients
##
file amanda.xinetd {
source = '<#$picalib#>/Backup/amanda.xinetd';
path = '/etc/xinetd.d/amanda';
perms = '640';
}
file amandahosts {
source = '<#$picalib#>/Backup/amandahosts';
path = '/var/lib/amanda/.amandahosts';
perms = '600';
uid = '33'; # amanda
gid = '6'; # disk
}
#fi
}
#fi
|