aboutsummaryrefslogtreecommitdiff
path: root/net/openvswitch/files/ovs-ctl-wrapper
blob: ee717554ec7c0d0858e1c009ea71cffbff8e0416 (plain)
1
2
3
4
5
6
7
8
9
#!/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