python2 library is now removed as the transition has been done by the upstream project OVN is now a separate project released with its own release plan and it's not included within openvswitch starting with ovs 2.13. openvswitch.mk is split out from the main Makefile for adding ovn packages back in following commits. The following two patches are already included in 2.13 - ovsdb-idlc-fix-dict-change-during-iteration.patch - compat-Include-confirm_neigh-parameter-if-needed.patch Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
9 lines
201 B
Bash
Executable file
9 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
s=/usr/share/openvswitch/scripts
|
|
case "$0" in
|
|
*ovs-ctl) "$s/ovs-ctl" "$@" ;;
|
|
*ovs-kmod-ctl) "$s/ovs-kmod-ctl" "$@" ;;
|
|
*ovn-ctl) "/usr/share/ovn/scripts/ovn-ctl" "$@" ;;
|
|
*) exit 1;;
|
|
esac
|