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>
#
# 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() {