mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-17 03:20:41 +01:00
25 lines
597 B
Bash
Executable File
25 lines
597 B
Bash
Executable File
#!/bin/bash
|
|
echo \[inputname.sh\]: testing $InputTCPServerInputName directive
|
|
. $srcdir/diag.sh init
|
|
. $srcdir/killrsyslog.sh # kill rsyslogd if it runs for some reason
|
|
. $srcdir/diag.sh generate-HOSTNAME
|
|
|
|
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
|
|
. $srcdir/diag.sh exit
|