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