lighttpd: carry common keywords out to variables

S50lighttpd contains repeating keywords that are worth carrying out as
variables: pid file name, daemon name, config file name.

Signed-off-by: Philipp Skadorov <philipp.skadorov@savoirfairelinux.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Philipp Skadorov 2017-03-08 15:43:31 -05:00 committed by Thomas Petazzoni
parent bccf48634d
commit 7bee455bd8

View File

@ -2,15 +2,19 @@
#
# Starts lighttpd.
#
NAME=lighttpd
DAEMON=/usr/sbin/$NAME
PID_FILE="/var/run/$NAME.pid"
CONF_FILE="/etc/$NAME/$NAME.conf"
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() {