This commit is contained in:
teldra 2021-05-10 10:47:40 +02:00
parent 8f908be592
commit 85df2bad82
1 changed files with 5 additions and 1 deletions

View File

@ -60,13 +60,17 @@ fi
if ! update-grub 2> /dev/null; then
echo update-grub failed
exit
fi
if [ "${cron}" ]; then
test -f /etc/void-snapshot.cfg && . /etc/void-snapshot.cfg
if [ "${REGULAR_SNAPSHOT_HOME}" ]; then
mkdir -p "/var/lib/backup/quelle/rootfs/system/snapshots/${word}"
btrbk --config="${cfg}" --quiet run "${word}home"
if ! btrbk --config="${cfg}" --quiet run "${word}home"; then
btrbk --config="${cfg}" --quiet clean "${word}home"
echo "fail: btrbk --config=${cfg} --quiet clean ${word}home"
exit
fi
fi