/
githubmirror
/
rsyslog
Обзор
Документация
Войти
/
githubmirror
/
rsyslog
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/rscript_random_warning.sh
33 строки
985 B
Rainer Gerhards
tests: bind IPv4-only imtcp listeners to loopback
05 июл 2026, 15:39
05 июл 2026, 15:39
3c858bc
Код
Авторство
О чём код?
#!/bin/bash ## rscript_random_warning.sh ## Verify that random() warns when max exceeds platform limit . ${srcdir:=.}/diag.sh init export RS_REDIR=">rsyslog.log 2>&1" generate_conf add_conf ' $DebugFile rsyslog.debug.log $DebugLevel 2 template(name="outfmt" type="string" string="%$.rand%\n") module(load="../plugins/imtcp/.libs/imtcp") input(type="imtcp" address="127.0.0.1" port="0" listenPortFileName="'${RSYSLOG_DYNNAME}'.tcpflood_port") set $.rand = random(4294967296); action(type="omfile" file="'${RSYSLOG_OUT_LOG}'" template="outfmt") ' startup tcpflood -m 1 shutdown_when_empty wait_shutdown WARN="rainerscript: desired random-number range [0 - 4294967296] is wider than supported limit" if ! grep -F "$WARN" rsyslog.log > /dev/null; then echo "FAIL: warning not found in rsyslog.log" cat rsyslog.log exit 1 fi if ! grep -F "$WARN" rsyslog.debug.log > /dev/null; then echo "FAIL: warning not found in rsyslog.debug.log" cat rsyslog.debug.log exit 1 fi exit_test