#! /bin/sh . /etc/rc.conf case "$1" in autostart) test x"${tinyproxy:-NO}" = x"NO" && exit 0 exec $0 start ;; start) tinyproxy ;; stop) killall tinyproxy ;; restart) $0 stop $0 start ;; *) echo "usage: $0 {start | stop | restart}" exit 1 esac exit $?