mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 02:50:40 +01:00
which enables to talk to the rsyslog core at runtime. The current implementation is only a beginning, but can be expanded over time
14 lines
254 B
Bash
Executable File
14 lines
254 B
Bash
Executable File
echo 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
|