1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-05 09:17:41 +03:00

F OpenNebula/one#6363: Handle system snapshots after poweroff (#2790)

This commit is contained in:
Daniel Clavijo Coca 2023-10-26 02:56:14 -06:00 committed by GitHub
parent c6d50954ef
commit 313391b651
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,7 +254,7 @@ if [ $RC -ne 0 ]; then
fi
# redefine potential snapshots after live migration
if [ "$SHARED" = "YES" ] && [ -n "$SNAP_CUR" ]; then
if [ "$SHARED" = "YES" ]; then
UUID=$(virsh --connect $QEMU_PROTOCOL://$DEST_HOST/system dominfo $DEPLOY_ID | awk '/UUID:/ {print $2}')
DISK_PATH=$(virsh --connect $QEMU_PROTOCOL://$DEST_HOST/system domblklist $DEPLOY_ID | awk '/disk.0/ {print $2}')
DISK_DIR=$(dirname $DISK_PATH)
@ -270,7 +270,8 @@ if [ "$SHARED" = "YES" ] && [ -n "$SNAP_CUR" ]; then
# redefine the snapshot using the xml metadata file
virsh --connect $QEMU_PROTOCOL://$DEST_HOST/system snapshot-create $DEPLOY_ID $SNAPSHOT_MD_XML --redefine > /dev/null || true
done
virsh --connect $QEMU_PROTOCOL://$DEST_HOST/system snapshot-current $DEPLOY_ID $SNAP_CUR
[ -n "$SNAP_CUR" ] && virsh --connect $QEMU_PROTOCOL://$DEST_HOST/system snapshot-current $DEPLOY_ID $SNAP_CUR
fi
# Synchronize VM time on background on remote host