X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=debian%2Fopenvswitch-switch.init;h=d84c1b671ca0adce99295cc7fa5ca906c97d10bf;hb=46528f78e5c0b7484e1735bb774ef2ad92e04593;hp=f650f8731cde080a01e6ad78ae8f56b7924eddd3;hpb=c50c79431efa7b85688fb4be61d97c5ee7a9c459;p=sliver-openvswitch.git diff --git a/debian/openvswitch-switch.init b/debian/openvswitch-switch.init index f650f8731..d84c1b671 100755 --- a/debian/openvswitch-switch.init +++ b/debian/openvswitch-switch.init @@ -30,17 +30,11 @@ . /usr/share/openvswitch/scripts/ovs-lib test -e /etc/default/openvswitch-switch && . /etc/default/openvswitch-switch -if test X"$BRCOMPAT" = Xyes && test ! -x /usr/sbin/ovs-brcompatd; then - BRCOMPAT=no - log_warning_msg "ovs-brcompatd missing, disabling bridge compatibility" -fi - -ovs_ctl () { - set /usr/share/openvswitch/scripts/ovs-ctl "$@" - if test X"$BRCOMPAT" = Xyes; then - set "$@" --brcompat - fi - "$@" +network_interfaces () { + INTERFACES="/etc/network/interfaces" + [ -e "${INTERFACES}" ] || return + bridges=`awk '{ if ($1 == "allow-ovs") { print $2; } }' "${INTERFACES}"` + [ -n "${bridges}" ] && $1 --allow=ovs ${bridges} } load_kmod () { @@ -72,12 +66,25 @@ start () { fi set "$@" $OVS_CTL_OPTS "$@" || exit $? + [ "$2" = "start" ] && network_interfaces ifup } stop () { + network_interfaces ifdown ovs_ctl stop } +restart () { + # OVS_RESTART_SAVE_FLOWS can be set by package postinst script. + if [ "$OVS_RESTART_SAVE_FLOWS" = "yes" ] || \ + [ "$1" = "--save-flows=yes" ]; then + start restart + else + stop + start + fi +} + case $1 in start) start @@ -89,8 +96,8 @@ case $1 in # The OVS daemons keep up-to-date. ;; restart) - stop - start + shift + restart "$@" ;; status) ovs_ctl status