srelay.init 332 B

1234567891011121314151617181920212223242526
  1. #!/bin/sh
  2. #FWINIT 60
  3. . /etc/rc.conf
  4. case $1 in
  5. autostop) ;;
  6. autostart)
  7. test x"${srelay:-NO}" = x"NO" && exit 0
  8. exec sh $0 start
  9. ;;
  10. start)
  11. [ -f /etc/srelay.conf ] || exit 1
  12. srelay ${srelay_flags}
  13. ;;
  14. stop)
  15. killall srelay
  16. ;;
  17. restart)
  18. sh $0 stop
  19. sh $0 start
  20. ;;
  21. *)
  22. echo "Usage: $0 {start | stop | restart}"
  23. ;;
  24. esac
  25. exit $?