mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-26 20:56:33 +00:00
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:
parent
bccf48634d
commit
7bee455bd8
@ -2,15 +2,19 @@
|
|||||||
#
|
#
|
||||||
# Starts lighttpd.
|
# Starts lighttpd.
|
||||||
#
|
#
|
||||||
|
NAME=lighttpd
|
||||||
|
DAEMON=/usr/sbin/$NAME
|
||||||
|
PID_FILE="/var/run/$NAME.pid"
|
||||||
|
CONF_FILE="/etc/$NAME/$NAME.conf"
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
printf "Starting lighttpd: "
|
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"
|
echo "OK"
|
||||||
}
|
}
|
||||||
stop() {
|
stop() {
|
||||||
printf "Stopping lighttpd: "
|
printf "Stopping lighttpd: "
|
||||||
start-stop-daemon -K -q -p /var/run/lighttpd.pid
|
start-stop-daemon -K -q -p $PID_FILE
|
||||||
echo "OK"
|
echo "OK"
|
||||||
}
|
}
|
||||||
restart() {
|
restart() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user