I should have packaged the OVN stuff, VTEP and what-not earlier, but was not inspired to do this earlier. I made some time now to package those parts. Disabling flake8 & python3 explicitly. They might get detected and cause weird build errors. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
22 lines
389 B
Bash
22 lines
389 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2013 Julius Schulz-Zander <julius@net.t-labs.tu-berlin.de>
|
|
# Copyright (C) 2014-2017 OpenWrt.org
|
|
|
|
START=15
|
|
|
|
start() {
|
|
/usr/share/openvswitch/scripts/ovs-ctl start
|
|
}
|
|
|
|
stop() {
|
|
/usr/share/openvswitch/scripts/ovs-ctl stop
|
|
}
|
|
|
|
restart() {
|
|
/usr/share/openvswitch/scripts/ovs-ctl restart
|
|
}
|
|
|
|
status() {
|
|
/usr/share/openvswitch/scripts/ovs-ctl status
|
|
}
|
|
|