X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=debian%2Fopenvswitch-switch.postinst;h=4be5a30c76c60ee27c5a4799b31e71f7b3364d18;hb=2d2a0e309f2464fd2cf77a328b15acc62cfc7c09;hp=74b52ba90f09644982d1b98fcaf9efed7ba6bb94;hpb=064af42167bf4fc9aaea2702d80ce08074b889c0;p=openvswitch diff --git a/debian/openvswitch-switch.postinst b/debian/openvswitch-switch.postinst index 74b52ba9..4be5a30c 100755 --- a/debian/openvswitch-switch.postinst +++ b/debian/openvswitch-switch.postinst @@ -33,6 +33,17 @@ case "$1" in fi done fi + + if /etc/init.d/openvswitch-switch status >/dev/null 2>&1; then + running=true + /etc/init.d/openvswitch-switch stop + else + running=false + fi + + if $running; then + /etc/init.d/openvswitch-switch start + fi ;; abort-upgrade|abort-remove|abort-deconfigure)