lighttpd: add simple startup script
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
853545c835
commit
ccda74f3c7
37
package/lighttpd/S50lighttpd
Normal file
37
package/lighttpd/S50lighttpd
Normal 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 $?
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user