privoxy.init 450 B

12345678910111213141516171819202122232425262728
  1. #!/bin/sh
  2. #PKG privoxy
  3. #INIT 70
  4. . /etc/rc.conf
  5. case $1 in
  6. autostop) ;;
  7. autostart)
  8. test x"${privoxy:-NO}" = x"NO" && exit 0
  9. test x"$privoxy" = x"DAEMON" && test -x /bin/mksh && exec mksh -T- $0 start
  10. exec sh $0 start
  11. ;;
  12. start)
  13. [ -f /etc/privoxy/config ] || exit
  14. /usr/sbin/privoxy /etc/privoxy
  15. ;;
  16. stop)
  17. kill $(pgrep -f /usr/sbin/privoxy)
  18. ;;
  19. restart)
  20. sh $0 stop
  21. sh $0 start
  22. ;;
  23. *)
  24. echo "Usage: $0 {start | stop | restart}"
  25. ;;
  26. esac
  27. exit $?