diff --git a/openvswitch/templates/bin/_openvswitch-db-server.sh.tpl b/openvswitch/templates/bin/_openvswitch-db-server.sh.tpl index fc3365e6b4..cec29ec45b 100644 --- a/openvswitch/templates/bin/_openvswitch-db-server.sh.tpl +++ b/openvswitch/templates/bin/_openvswitch-db-server.sh.tpl @@ -22,6 +22,7 @@ COMMAND="${@:-start}" OVS_DB=/run/openvswitch/conf.db OVS_SOCKET=/run/openvswitch/db.sock OVS_SCHEMA=/usr/share/openvswitch/vswitch.ovsschema +OVS_PID=/run/openvswitch/ovsdb-server.pid function start () { mkdir -p "$(dirname ${OVS_DB})" @@ -38,11 +39,13 @@ function start () { -vconsole:emer \ -vconsole:err \ -vconsole:info \ + --pidfile=${OVS_PID} \ --remote=punix:${OVS_SOCKET} } function stop () { - ovs-appctl -T1 -t /run/openvswitch/ovsdb-server.1.ctl exit + PID=$(cat $OVS_PID) + ovs-appctl -T1 -t /run/openvswitch/ovsdb-server.${PID}.ctl exit } $COMMAND diff --git a/openvswitch/templates/bin/_openvswitch-vswitchd.sh.tpl b/openvswitch/templates/bin/_openvswitch-vswitchd.sh.tpl index 30a7db79b7..36fe51fdc8 100644 --- a/openvswitch/templates/bin/_openvswitch-vswitchd.sh.tpl +++ b/openvswitch/templates/bin/_openvswitch-vswitchd.sh.tpl @@ -20,6 +20,7 @@ set -ex COMMAND="${@:-start}" OVS_SOCKET=/run/openvswitch/db.sock +OVS_PID=/run/openvswitch/ovs-vswitchd.pid function start () { t=0 @@ -63,11 +64,13 @@ function start () { -vconsole:emer \ -vconsole:err \ -vconsole:info \ + --pidfile=${OVS_PID} \ --mlockall } function stop () { - ovs-appctl -T1 -t /run/openvswitch/ovs-vswitchd.1.ctl exit + PID=$(cat $OVS_PID) + ovs-appctl -T1 -t /run/openvswitch/ovs-vswitchd.${PID}.ctl exit } $COMMAND