mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 11:40:42 +01:00
24 lines
867 B
Bash
Executable File
24 lines
867 B
Bash
Executable File
#!/bin/bash
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/diag.sh startup rawmsg-after-pri.conf
|
|
. $srcdir/diag.sh tcpflood -m1 -P 129
|
|
. $srcdir/diag.sh shutdown-when-empty # shut down rsyslogd when done processing messages
|
|
. $srcdir/diag.sh wait-shutdown # and wait for it to terminate
|
|
echo "Mar 1 01:00:00 172.20.245.8 tag msgnum:00000000:" > rsyslog.out.compare
|
|
NUMLINES=$(grep -c "^Mar 1 01:00:00 172.20.245.8 tag msgnum:00000000:$" rsyslog.out.log 2>/dev/null)
|
|
|
|
if [ -z $NUMLINES ]; then
|
|
echo "ERROR: output file seems not to exist"
|
|
ls -l rsyslog.out.log
|
|
cat rsyslog.out.log
|
|
. $srcdir/diag.sh error-exit 1
|
|
else
|
|
if [ ! $NUMLINES -eq 1 ]; then
|
|
echo "ERROR: output format does not match expectation"
|
|
cat rsyslog.out.log
|
|
. $srcdir/diag.sh error-exit 1
|
|
fi
|
|
fi
|
|
. $srcdir/diag.sh exit
|