tinyproxy.init 295 B

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