tinyproxy.init 443 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. test x"$tinyproxy" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. /usr/sbin/tinyproxy
  14. ;;
  15. stop)
  16. kill $(pgrep -f /usr/sbin/tinyproxy)
  17. rm /var/run/tinyproxy.pid
  18. ;;
  19. restart)
  20. sh $0 stop
  21. sh $0 start
  22. ;;
  23. *)
  24. echo "usage: $0 {start | stop | restart}"
  25. exit 1
  26. esac
  27. exit $?