tinyproxy.init 334 B

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