lighttpd: print stderr trace if validation fails
lighttpd.init validate_conf(): print stderr trace if validation fails Signed-off-by: Glenn Strauss <gstrauss@gluelogic.com>
This commit is contained in:
parent
9ac99b72bb
commit
38ffa02e42
1 changed files with 3 additions and 2 deletions
|
@ -8,8 +8,8 @@ USE_PROCD=1
|
|||
PROG=/usr/sbin/lighttpd
|
||||
|
||||
validate_conf() {
|
||||
$PROG -tt -f /etc/lighttpd/lighttpd.conf >/dev/null 2>&1 || {
|
||||
echo "validation failed"
|
||||
$PROG -tt -f /etc/lighttpd/lighttpd.conf >/dev/null || {
|
||||
echo 1>&2 "lighttpd.conf validation failed"
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ service_triggers() {
|
|||
}
|
||||
|
||||
reload_service() {
|
||||
validate_conf || exit 1
|
||||
# lighttpd graceful restart (SIGUSR1)
|
||||
procd_send_signal lighttpd '*' USR1
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue