mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 09:50:40 +01:00
- added a test to check handling of damaged .qi files on startup - made sure each test identifies itself on startup
15 lines
306 B
Bash
Executable File
15 lines
306 B
Bash
Executable File
echo \[omod-if-array.sh\]: test omod-if-array via udp
|
|
$srcdir/killrsyslog.sh # kill rsyslogd if it runs for some reason
|
|
|
|
./nettester -tomod-if-array -iudp -p4711
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo test omod-if-array via tcp
|
|
./nettester -tomod-if-array -itcp
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|