mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 06:58:39 +01:00
openvswitch: multiple fixes for 2.10
- initscript: skip when ctl scripts are absent. When only ovs is installed, this will quash error messages of ovn-ctl not found when invoking stop - openvswitch-common: include ovs-kmod-ctl - patches: ovs-save: compatible with busybox ip command Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
@@ -6,8 +6,8 @@
|
||||
START=15
|
||||
|
||||
ovs_script_dir=/usr/share/openvswitch/scripts
|
||||
ovs_ctl="$ovs_script_dir/ovs-ctl"
|
||||
ovn_ctl="$ovs_script_dir/ovn-ctl"
|
||||
ovs_ctl="$ovs_script_dir/ovs-ctl"; [ -x "$ovs_ctl" ] || ovs_ctl=:
|
||||
ovn_ctl="$ovs_script_dir/ovn-ctl"; [ -x "$ovn_ctl" ] || ovn_ctl=:
|
||||
|
||||
EXTRA_COMMANDS=status
|
||||
|
||||
|
||||
Reference in New Issue
Block a user