Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -2,15 +2,21 @@
#
# Starts lighttpd.
#
NAME=lighttpd
DAEMON=/usr/sbin/$NAME
PID_FILE="/var/run/$NAME.pid"
CONF_FILE="/etc/$NAME/$NAME.conf"
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
start() {
printf "Starting lighttpd: "
start-stop-daemon -S -q -p /var/run/lighttpd.pid --exec /usr/sbin/lighttpd -- -f /etc/lighttpd/lighttpd.conf
start-stop-daemon -S -q -p $PID_FILE --exec $DAEMON -- -f $CONF_FILE
echo "OK"
}
stop() {
printf "Stopping lighttpd: "
start-stop-daemon -K -q -p /var/run/lighttpd.pid
start-stop-daemon -K -q -p $PID_FILE
echo "OK"
}
restart() {