borg/borg.sh

56 lines
1.2 KiB
Bash
Raw Permalink Normal View History

2020-10-03 22:41:19 +02:00
#! /bin/bash
# wrapper around borgbackup
# need a borg.conf file - see example file
# need passwordless ssh access if using remote repo
conf=$(dirname $0)/borg.conf
if [ ! -f $conf ] ; then
echo config file not found
exit 5
fi
source $conf
TODAY=$(date "+%Y%m%d")
case $1 in
("list")
if [ ! -z $2 ] ; then
${borg} list $options ${REPOSITORY}::${2}
ret=$?
else
${borg} list $options $REPOSITORY
ret=$?
fi
;;
("check")
shift
# if arg: check archive, if not: check whole repo
if [ $# -eq 1 ] ; then
target=${REPOSITORY}::${1}
else
target=${REPOSITORY}
fi
${borg} check -v ${target}
ret=$?
;;
("extract")
${borg} extract ${REPOSITORY}::${2} ${3}
ret=$?
;;
(info)
yesterday=$(date -d "yesterday 13:00 " '+%Y%m%d')
yesterday_archive=${REPOSITORY}::$(hostname)_${yesterday}
$borg check -v $yesterday_archive
ret=$?
;;
(*)
${borg} create $options --compression lzma,5 $REPOSITORY::$(hostname)_${TODAY} ${src}
ret=$?
if [ $ret -eq 0 ] ; then
${borg} prune $options $REPOSITORY --prefix $(hostname)_ --keep-daily=${rotate}
fi
;;
esac
exit $ret