tinyproxy.init 491 B

123456789101112131415161718192021222324252627282930
  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. mkdir -p /var/run/tinyproxy
  14. chown tinyproxy.tinyproxy /var/run/tinyproxy
  15. /usr/sbin/tinyproxy
  16. ;;
  17. stop)
  18. kill $(pgrep -f /usr/sbin/tinyproxy)
  19. ;;
  20. restart)
  21. sh $0 stop
  22. sh $0 start
  23. ;;
  24. *)
  25. echo "usage: $0 {start | stop | restart}"
  26. exit 1
  27. esac
  28. exit $?