22 lines
526 B
Text
22 lines
526 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="monthly"
|
|
CURRENT_LINK="Current-monthly"
|
|
#
|
|
# 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
|