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

B #: fix minor bug at fs/cp & BRIDGE_LIST (#1117)

(cherry picked from commit 02416dcb00ea42be4d22583bdc876a805ef87049)
This commit is contained in:
Christian González 2021-04-20 13:21:26 +02:00 committed by Ruben S. Montero
parent a7c9633e5e
commit b7a2a5c16a
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -153,7 +153,13 @@ if [ -n "$BRIDGE_LIST" ]; then
"Error converting $DST in $DST_HOST"
fi
FORMAT=$(ssh_monitor_and_log $DST_HOST "$QEMU_IMG info $DST | grep "^file format:" | awk '{print \$3}' || :" 2>&1)
FORMAT=$(ssh_monitor_and_log $DST_HOST "set -e -o pipefail; $QEMU_IMG info $DST | grep \"^file format:\" | awk '{print \$3}'")
# if ssh_monitor_and_log fails RC is returned
if [[ $FORMAT =~ '^[0-9]+$' ]]; then
exit -1
fi
else
mkdir -p "$BASE_PATH"
multiline_exec_and_log "set -e -o pipefail; $COPY_COMMAND" "Error copying $SRC to $DST"