22 lines
525 B
Text
22 lines
525 B
Text
#
|
|
# egbackup, copyright 2005 egressive limited, www.egressive.com
|
|
#
|
|
# configuration file for /etc/ebu/ebu, a simple script for doing
|
|
# tar-based backups.
|
|
#
|
|
# base filename for the backups...
|
|
BU_FROOT="daily"
|
|
CURRENT_LINK="Current-daily"
|
|
#
|
|
# 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=4
|