ovs-controller-r1 446 B

1234567891011121314151617181920212223
  1. #!/sbin/openrc-run
  2. # Copyright 1999-2013 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. description="Open vSwitch OpenFlow controller"
  5. command="/usr/bin/ovs-controller"
  6. command_args="
  7. --pidfile
  8. --detach
  9. --monitor
  10. ${OPTIONS} ${METHODS}"
  11. pidfile="/var/run/openvswitch/ovs-controller.pid"
  12. depend() {
  13. need net
  14. use logger
  15. }
  16. start_pre() {
  17. checkpath -d "/var/run/openvswitch" -m 0750
  18. }