From 2430c4ef82a58d9a2903785a8edef7392f49bea2 Mon Sep 17 00:00:00 2001 From: Stijn Tintel Date: Wed, 28 Jul 2021 17:48:41 +0300 Subject: [PATCH] openvswitch: add missing basescript variable The Open vSwitch init script does not set USE_PROCD=1. Instead, it defines most of the functions and variables that would be set when USE_PROCD is set to 1, but with some minor changes. The basescript variable however, which is used when calling procd_open_service and procd_kill, is not set. As a result, basename of the contents of the initscript variable is used as the service name. As the service is automatically started via its symlink in /etc/rc.d, S15openvswitch, the service name is S15openvswitch. Set the basescript variable so that the service name is openvswitch. Signed-off-by: Stijn Tintel --- net/openvswitch/files/openvswitch.init | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net/openvswitch/files/openvswitch.init b/net/openvswitch/files/openvswitch.init index 32adbac49..84ba17b62 100755 --- a/net/openvswitch/files/openvswitch.init +++ b/net/openvswitch/files/openvswitch.init @@ -7,6 +7,8 @@ . /lib/functions/procd.sh START=15 +basescript=$(readlink "$initscript") + ovs_ctl="/usr/share/openvswitch/scripts/ovs-ctl"; [ -x "$ovs_ctl" ] || ovs_ctl=: ovn_ctl="/usr/share/ovn/scripts/ovn-ctl"; [ -x "$ovn_ctl" ] || ovn_ctl=: