21 lines
506 B
Text
21 lines
506 B
Text
|
#
|
||
|
# configuration file for /etc/ebu/ebu, a simple script for doing
|
||
|
# tar-based backups.
|
||
|
#
|
||
|
# base filename for the backups...
|
||
|
BU_FROOT="weekly"
|
||
|
CURRENT_LINK="Current"
|
||
|
#
|
||
|
# directory in which to save the backups...
|
||
|
BU_DIR=/extra/apu
|
||
|
#
|
||
|
# directories to back up
|
||
|
FILES="/home /etc /var/www /var/spool/mail"
|
||
|
#
|
||
|
# directories/files to exclude
|
||
|
EXCLUDE=" home/sites/subversion home/vmware home/server *.log *Cache* *cache* *~ */tmp *nobackup*"
|
||
|
#
|
||
|
# removal all but the $BU_TO_KEEP most recent
|
||
|
# backups.
|
||
|
BU_TO_KEEP=2
|