syslog-ng: add syntax check to startup script

Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
This commit is contained in:
Philip Prindeville 2017-07-25 14:16:37 -06:00
parent 2898e7cc47
commit 08a13fb27a
1 changed files with 6 additions and 0 deletions

View File

@ -12,6 +12,12 @@ config_file=/etc/syslog-ng.conf
start() {
[ -f $config_file ] || return 1
if ! $PROG -s 2>/dev/null ; then
echo "Couldn't parse $(basename $config_file)" >&2
exit 1
fi
service_start $PROG --process-mode background \
-p $SERVICE_PID_FILE
}