libvirt-guests: avoid bashism

At least Debian uses dash to run the init scripts
This commit is contained in:
Guido Günther 2014-04-07 11:11:07 +02:00
parent d9de144385
commit 5a05865773

View File

@ -89,13 +89,15 @@ test_connect()
{
uri=$1
for ((i = 0; i < ${CONNECT_RETRIES}; i++)); do
i=${CONNECT_RETRIES}
while [ $i -gt 0 ]; do
run_virsh "$uri" connect 2>/dev/null
if [ $? -eq 0 ]; then
return 0;
fi
sleep ${RETRIES_SLEEP}
eval_gettext "Unable to connect to libvirt currently. Retrying .. \$i"
i=$(($i-1))
done
eval_gettext "Can't connect to \$uri. Skipping."
echo