This repository has been archived on 2021-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
duplicacy-scripts-OLD/GauntRouter Backup.sh
2019-10-30 17:00:22 -04:00

26 lines
646 B
Bash

#!/bin/sh
# https://stackoverflow.com/a/185473/1388019
lockfile="/tmp/duplicacy.lock"
LOGFILE="/var/log/duplicacy/GauntRouterConfigBackup_$(/bin/date +%Y%m%d-%H%M%S).log"
if [ -e ${lockfile} ] && kill -0 `cat ${lockfile}`; then
echo "duplicacy backup already running" >> ${LOGFILE}
exit
fi
# make sure the lockfile is removed when we exit and then claim it
trap "rm -f ${lockfile}; exit" INT TERM EXIT
echo $$ > ${lockfile}
# run the backup
cd /cf
/usr/bin/duplicacy -verbose -log backup -stats >> ${LOGFILE} 2>&1
# compress the logs
/usr/bin/gzip $(/usr/bin/dirname ${LOGFILE})/*.log
# clean up lockfile
rm -f ${lockfile}