#
#   Common configuration file for backup
#

# lrr directory
LRRDIR=$ROOTACT/lrr

# lrr configuration directory
LRRCONF=$ROOTACT/usr/etc/lrr

# lrr data directory
LRRDATA=$ROOTACT/usr/data/lrr

# excluded files and directories list file
BACKUPEXCLUDELIST="$ROOTACT/lrr/restoremgr/common/exclude-list"

# Version minimum to allow backup being restored
# If a backup with an older lrr version exists, it will forbidden to restore it
MINIBACKUPVER="2.8.37"

# log file
BACKUPLOGFILE=$ROOTACT/var/log/lrr/restoremgr.log

# tar filename
TARFILE=lrr.tar.gz

# system files usefull for restoring a functionnal environment
# must be limited to the minimum, it is not intend to save the whole system
# sysconfiglrr.sh is run after restore, several system files are updated
SUPDIR="/home/support"
if [ ! -d "$SUPDIR" ]; then
    SUPDIR=""
fi

