X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=debian%2Fifupdown.sh;h=f6a77508d6e1f7522bee77fef822346935dbb201;hb=49a4902d76b9149e4fa399bde6d5cb9a91e64c07;hp=ea36a0dca8fbfa0a8fd8512ca34188ba6b45cb84;hpb=86b87c92669daca4c69f412de2cc42c255368c4f;p=openvswitch diff --git a/debian/ifupdown.sh b/debian/ifupdown.sh index ea36a0dc..f6a77508 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 @@ -61,6 +61,10 @@ if [ "${MODE}" = "start" ]; then ${OVS_EXTRA+-- $OVS_EXTRA} ifconfig "${IFACE}" up + for slave in ${IF_OVS_BONDS} + do + ifconfig "${slave}" up + done ;; *) exit 0