1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

b #5699: Fix condition

This commit is contained in:
Ruben S. Montero 2022-01-18 11:12:41 +01:00
parent 7fdb46a650
commit ce95cdf655
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -64,7 +64,7 @@ fi
#PROLOG_MIGRATE_UNKNOWN_FAILURE (61)
LCM_STATE=$(lcm_state "$VMID")
if ! [[ "$LCM_STATE" =~ ^(60|61)$ ]]; then
if [[ "$LCM_STATE" =~ ^(60|61)$ ]]; then
log "Not moving files from $SRC_HOST in FT mode"
exit 0
fi