#!/sbin/runscript # Distributed under the terms of the GNU General Public License v2 depend() { use net } start() { ebegin "Starting thttpd" thttpd -C /etc/thttpd.conf eend $? } stop() { ebegin "Stopping thttpd" kill `cat /var/run/thttpd.pid` eend $? }