zfs mirror: delete old snapshots and bookmarks
This commit is contained in:
parent
3cd41adeaf
commit
706c4028f8
1 changed files with 17 additions and 4 deletions
|
@ -2,14 +2,14 @@
|
||||||
|
|
||||||
set -exu
|
set -exu
|
||||||
|
|
||||||
ssh="ssh -o StrictHostKeyChecking=no -o ConnectTimeout=5 root@${server_ip}"
|
ssh="ssh -o ConnectTimeout=5 root@${server_ip}"
|
||||||
bookmark_prefix="auto-mirror_"
|
bookmark_prefix="auto-mirror_"
|
||||||
new_bookmark="$bookmark_prefix$(date +"%Y-%m-%d_%H:%M:%S")"
|
new_bookmark="$bookmark_prefix$(date +"%Y-%m-%d_%H:%M:%S")"
|
||||||
|
|
||||||
for dataset in $(zfs list -t filesystem -H -o name)
|
for dataset in $(zfs list -t filesystem -H -o name)
|
||||||
do
|
do
|
||||||
echo "MIRRORING $dataset"
|
echo "MIRRORING $dataset"
|
||||||
|
|
||||||
if ! $ssh sudo zfs list -t filesystem -H -o name | grep -q "^$dataset$"
|
if ! $ssh sudo zfs list -t filesystem -H -o name | grep -q "^$dataset$"
|
||||||
then
|
then
|
||||||
echo "CREATING PARENT DATASET..."
|
echo "CREATING PARENT DATASET..."
|
||||||
|
@ -17,11 +17,11 @@ do
|
||||||
fi
|
fi
|
||||||
|
|
||||||
zfs snap "$dataset@$new_bookmark"
|
zfs snap "$dataset@$new_bookmark"
|
||||||
|
|
||||||
if zfs list -t bookmark -H -o name | grep "^$dataset#$bookmark_prefix" | wc -l | grep -q "^0$"
|
if zfs list -t bookmark -H -o name | grep "^$dataset#$bookmark_prefix" | wc -l | grep -q "^0$"
|
||||||
then
|
then
|
||||||
echo "INITIAL BACKUP"
|
echo "INITIAL BACKUP"
|
||||||
# do in subshell, otherwise ctr+c will lead to 0 exitcode
|
# do in subshell, otherwise ctr+c will lead to 0 exitcode
|
||||||
$(zfs send -v "$dataset@$new_bookmark" | $ssh sudo zfs recv -F "$dataset" -o mountpoint=none)
|
$(zfs send -v "$dataset@$new_bookmark" | $ssh sudo zfs recv -F "$dataset" -o mountpoint=none)
|
||||||
else
|
else
|
||||||
echo "INCREMENTAL BACKUP"
|
echo "INCREMENTAL BACKUP"
|
||||||
|
@ -32,6 +32,19 @@ do
|
||||||
|
|
||||||
if [[ "$?" == "0" ]]
|
if [[ "$?" == "0" ]]
|
||||||
then
|
then
|
||||||
|
|
||||||
|
# delete old local bookmarks
|
||||||
|
for destroyable_bookmark in $(zfs list -t bookmark -H -o name "$dataset" | grep "^$dataset#$bookmark_prefix")
|
||||||
|
do
|
||||||
|
zfs destroy "$destroyable_bookmark"
|
||||||
|
done
|
||||||
|
|
||||||
|
# delete snapshots from bookmarks (except newest, even of not necessary; maybe for resuming tho)
|
||||||
|
for destroyable_snapshot in $($ssh sudo zfs list -t snapshot -H -o name "$dataset" | grep "^$dataset@$bookmark_prefix" | grep -v "$new_bookmark")
|
||||||
|
do
|
||||||
|
$ssh sudo zfs destroy "$destroyable_snapshot"
|
||||||
|
done
|
||||||
|
|
||||||
zfs bookmark "$dataset@$new_bookmark" "$dataset#$new_bookmark"
|
zfs bookmark "$dataset@$new_bookmark" "$dataset#$new_bookmark"
|
||||||
zfs destroy "$dataset@$new_bookmark"
|
zfs destroy "$dataset@$new_bookmark"
|
||||||
echo "SUCCESS $dataset"
|
echo "SUCCESS $dataset"
|
||||||
|
|
Loading…
Reference in a new issue