Update xoce-import.sh

adding `--keepalive-time 5` to send a tcp notice keeping the connection active
This commit is contained in:
Dustin B 2020-07-26 17:03:49 -04:00 committed by GitHub
parent 640ba95d1b
commit 2846b2c7cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,7 @@ uuid=$(xe vm-import url="$XOCE_URL" 2> /dev/null)
import=$?
if [ $import -ne 0 ]
then
uuid=$(curl "$XOCE_URL" -L -O -c -| xe vm-import filename=/dev/stdin 2>&1)
uuid=$(curl "$XOCE_URL" -L -O -c - --keepalive-time 5 | xe vm-import filename=/dev/stdin 2>&1)
fi
# If it fails again (for any reason), we stop the script