mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 10:30:40 +01:00
15 lines
296 B
Bash
Executable File
15 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
# add 2018-11-13 by Jan Gerhards, released under ASL 2.0
|
|
|
|
. ${srcdir:=.}/diag.sh init
|
|
|
|
./mangle_qi &> $RSYSLOG_DYNNAME.output
|
|
grep -q -- "-q option MUST be specified" $RSYSLOG_DYNNAME.output
|
|
|
|
if [ ! $? -eq 0 ]; then
|
|
echo "invalid response generated"
|
|
error_exit 1
|
|
fi;
|
|
|
|
exit_test
|