Files
wlan-ap/feeds/openflow/openvswitch/files/ovs-ctl-wrapper
John Crispin 12ad0d59c8 ucentral: development update
* rename openflow feed

Signed-off-by: John Crispin <john@phrozen.org>
2021-07-28 13:44:28 +02:00

10 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