You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the barc snapshot is missing from the RBD, it aborts. who would want that functionality?
consider the current code:
#Snapshot Housekeeping..
#find last snapshot in ceph
latest_snap=$(rbd snap ls "$image_spec" | \
awk '{print $2}' | \
grep "$opt_label" | sort -r | head -n 1)
#not exist snapshot on rbd
if [ -z "$latest_snap" ]; then
log error "VM $vm_id - Ceph last snapshot '$image_spec' not found!";
call_hook_script "export-diff-abort" "-" "-"
rc=30
break;
fi
We want to backup this VM/disk... the snapshot is merely a means to an end. If it's missing, forget about it, create a new one, and do a new run with renew=0....?
The text was updated successfully, but these errors were encountered:
alyarb
changed the title
snapshot housekeeping dies on missing snapshot - why
snapshot housekeeping dies on missing snapshot - why?
Jun 3, 2020
If the barc snapshot is missing from the RBD, it aborts. who would want that functionality?
consider the current code:
We want to backup this VM/disk... the snapshot is merely a means to an end. If it's missing, forget about it, create a new one, and do a new run with renew=0....?
The text was updated successfully, but these errors were encountered: