1
0
Fork 0

[schnapps] Create numbered snapshots, so that .info files are kept

This commit is contained in:
Luca Beltrame 2021-10-28 15:49:44 +02:00
parent ae33428a3e
commit 1fa8b08c3b
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -6,7 +6,10 @@ HOST="maru"
create_snapshot () {
logger -p user.info -t schnapps_backup "Creating schnapps backup for host ${HOST}"
if /usr/bin/schnapps upload > /dev/null;
/usr/bin/schnapps create -t time 'Pre-export snapshot'
sleep 1 # To make sure the lock is removed
snapshot_id=$(/usr/bin/schnapps list -j | /usr/bin/jq '.["snapshots"][-1].number')
if /usr/bin/schnapps upload "${snapshot_id}" > /dev/null;
then
logger -p user.info -t schnapps_backup "Snapshot for host ${HOST} created successfully"
return 0