From: Gurucharan Shetty Date: Wed, 9 May 2012 16:55:53 +0000 (-0700) Subject: debian: Remove --no-wait option from the ifupdown script. X-Git-Tag: sliver-openvswitch-1.8.90-0~48^2~468 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a6a60925d7425685dd7876ec7da162fa5d73a3b8;p=sliver-openvswitch.git debian: Remove --no-wait option from the ifupdown script. Using the --no-wait option in the ifupdown script creates a race condition where-in the network devices may not yet be created after ovs-vsctl returns successfully. Signed-off-by: Gurucharan Shetty --- diff --git a/debian/ifupdown.sh b/debian/ifupdown.sh index ea36a0dca..bd6aec846 100755 --- a/debian/ifupdown.sh +++ b/debian/ifupdown.sh @@ -22,7 +22,7 @@ if [ -z "${IF_OVS_TYPE}" ]; then fi ovs_vsctl() { - ovs-vsctl --no-wait --timeout=5 "$@" + ovs-vsctl --timeout=5 "$@" } if (ovs_vsctl --version) > /dev/null 2>&1; then :; else