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