21 lines
405 B
Text
21 lines
405 B
Text
|
#
|
||
|
# configuration file for /etc/ebu/ebu, a simple script for doing
|
||
|
# tar-based backups.
|
||
|
#
|
||
|
# base filename for the backups...
|
||
|
BU_FROOT="test"
|
||
|
CURRENT_LINK="Current-test"
|
||
|
#
|
||
|
# directory in which to save the backups...
|
||
|
BU_DIR=/backup/server/daily
|
||
|
#
|
||
|
# directories to back up
|
||
|
FILES="/etc"
|
||
|
#
|
||
|
# directories/files to exclude
|
||
|
EXCLUDE="*.log"
|
||
|
#
|
||
|
# removal all but the $BU_TO_KEEP most recent
|
||
|
# backups.
|
||
|
BU_TO_KEEP=1
|