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