lighttpd: add simple startup script

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2012-07-22 19:17:48 +02:00
parent 853545c835
commit ccda74f3c7
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,37 @@
#!/bin/sh
#
# Starts lighttpd.
#
start() {
echo -n "Starting lighttpd: "
start-stop-daemon -S -q -p /var/run/lighttpd.pid --exec /usr/sbin/lighttpd -- -f /etc/lighttpd/lighttpd.conf
echo "OK"
}
stop() {
echo -n "Stopping lighttpd: "
start-stop-daemon -K -q -p /var/run/lighttpd.pid
echo "OK"
}
restart() {
stop
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
restart
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?

View File

@ -87,6 +87,14 @@ endef
LIGHTTPD_POST_INSTALL_TARGET_HOOKS += LIGHTTPD_INSTALL_CONFIG
define LIGHTTPD_INSTALL_INIT_SCRIPT
[ -f $(TARGET_DIR)/etc/init.d/S50lighttpd ] || \
$(INSTALL) -D -m 755 package/lighttpd/S50lighttpd \
$(TARGET_DIR)/etc/init.d/S50lighttpd
endef
LIGHTTPD_POST_INSTALL_TARGET_HOOKS += LIGHTTPD_INSTALL_INIT_SCRIPT
define LIGHTTPD_UNINSTALL_TARGET_CMDS
$(RM) $(TARGET_DIR)/usr/sbin/lighttpd
$(RM) $(TARGET_DIR)/usr/sbin/lighttpd-angel