# Backup Prefix directory - In general - that's where the backup will # go. make sure this directory exists. BACKUP_DIR=/var/backup # Define the timestamp file - for incremental backups. TIME_STAMP=${CFG_DIR}/time.stamp # backup-List -directory listing we want to backup BACKUP_LIST=${CFG_DIR}/backup_list.cfg # Mirror-Backup -directory listing we want to backup - actually "/", all :) MIRROR_LIST=${CFG_DIR}/mirror_list.cfg # Exclude list - all files/directories we don't want to backup. # Make sure /proc, /sys and /dev are excluded ! Even /mnt would be nice to remove. EXCLUDE_LIST=${CFG_DIR}/exclude_list.cfg # Exclude list - Add extensions you do not want to be compressed. # default list is quite big already. NO_COMPRESS=${CFG_DIR}/nocompress.cfg # Detector Flag - if Full Backup was done after purge. FULL_DETECT=${CFG_DIR}/full.flag # what directory to put the backed-up files. BACKUP_DEST=${BACKUP_DIR} # Rotate-Directory Prefix - a Number will be appended PREFIX_ROTATE=${BACKUP_DIR}/backup_db # Number of max rotations - Adapt it to the backup-archive size. ROTATE_NR=4 # compress all that stuff ? COMPRESS=yes # Use "afio"/"tar" - afio is better ...compresses files before adding them # to archive ARCHIVER="afio" #ARCHIVER="tar"