23 lines
524 B
Text
23 lines
524 B
Text
|
#
|
||
|
# egbackup, copyright 2005 egressive limited, www.egressive.com
|
||
|
#
|
||
|
# configuration file for egbackup, a simple script for doing
|
||
|
# tar-based backups.
|
||
|
#
|
||
|
# base filename for the backups...
|
||
|
BU_FROOT="weekly"
|
||
|
CURRENT_LINK="Current-weekly"
|
||
|
#
|
||
|
# directory in which to save the backups...
|
||
|
BU_DIR=/storage/oslUK
|
||
|
#
|
||
|
# directories to back up
|
||
|
FILES="/home/* /etc /var/www /var/spool/mail"
|
||
|
#
|
||
|
# directories/files to exclude
|
||
|
EXCLUDE=" *.log *Cache* *cache* *~ */tmp"
|
||
|
#
|
||
|
# removal all but the $BU_TO_KEEP most recent
|
||
|
# backups.
|
||
|
BU_TO_KEEP=3
|