mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 06:19:14 +08:00
10 lines
201 B
Bash
Executable File
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
|