mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-16 12:10:46 +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
21 lines
483 B
Bash
Executable File
21 lines
483 B
Bash
Executable File
echo testing $InputTCPServerInputName directive
|
|
$srcdir/killrsyslog.sh # kill rsyslogd if it runs for some reason
|
|
|
|
echo port 12514
|
|
./nettester -tinputname_imtcp_12514 -cinputname_imtcp -itcp -p12514
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo port 12515
|
|
./nettester -tinputname_imtcp_12515 -cinputname_imtcp -itcp -p12515
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
echo port 12516
|
|
./nettester -tinputname_imtcp_12516 -cinputname_imtcp -itcp -p12516
|
|
if [ "$?" -ne "0" ]; then
|
|
exit 1
|
|
fi
|