2014-09-12 13:02:56 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2013 Julius Schulz-Zander <julius@net.t-labs.tu-berlin.de>
|
2017-09-09 15:51:07 +00:00
|
|
|
# Copyright (C) 2014-2017 OpenWrt.org
|
2014-09-12 13:02:56 +00:00
|
|
|
|
|
|
|
START=15
|
|
|
|
|
2017-09-09 15:51:07 +00:00
|
|
|
start() {
|
|
|
|
/usr/share/openvswitch/scripts/ovs-ctl start
|
|
|
|
}
|
2014-09-12 13:02:56 +00:00
|
|
|
|
2017-09-09 15:51:07 +00:00
|
|
|
stop() {
|
|
|
|
/usr/share/openvswitch/scripts/ovs-ctl stop
|
|
|
|
}
|
2014-09-12 13:02:56 +00:00
|
|
|
|
2017-09-09 15:51:07 +00:00
|
|
|
restart() {
|
|
|
|
/usr/share/openvswitch/scripts/ovs-ctl restart
|
|
|
|
}
|
2014-09-12 13:02:56 +00:00
|
|
|
|
2017-09-09 15:51:07 +00:00
|
|
|
status() {
|
|
|
|
/usr/share/openvswitch/scripts/ovs-ctl status
|
2014-09-12 13:02:56 +00:00
|
|
|
}
|
|
|
|
|