kumquat-buildroot/target/device/valka/target_skeleton/etc/rc.d/lighttpd

18 lines
265 B
Plaintext
Raw Normal View History

2008-03-06 19:59:14 +01:00
#!/bin/sh
. /etc/rc.subr
start() {
echo -n " * Starting lighttpd: "
if ${lighttpd_program} ${lighttpd_flags}; then
echo "Ok"
else
echo "Failed"
fi
}
stop() {
echo " * Stopping lighttpd..."
killpid "${lighttpd_pidfile}"
}
rc_run_command "$1" "lighttpd"