mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 10:02:24 +08:00
23 lines
389 B
Bash
23 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
|
|
}
|
|
|