You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
389 B

  1. #!/bin/sh /etc/rc.common
  2. # Copyright (C) 2013 Julius Schulz-Zander <julius@net.t-labs.tu-berlin.de>
  3. # Copyright (C) 2014-2017 OpenWrt.org
  4. START=15
  5. start() {
  6. /usr/share/openvswitch/scripts/ovs-ctl start
  7. }
  8. stop() {
  9. /usr/share/openvswitch/scripts/ovs-ctl stop
  10. }
  11. restart() {
  12. /usr/share/openvswitch/scripts/ovs-ctl restart
  13. }
  14. status() {
  15. /usr/share/openvswitch/scripts/ovs-ctl status
  16. }