mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-15 19:50:40 +01:00
Also now permit interactivly running tests without explicitly setting $srcdir. This now works if we are inside ./tests and fails, as before, when we are in a different directory. Detected by shellcheck via CodeFactor.io
27 lines
638 B
Bash
Executable File
27 lines
638 B
Bash
Executable File
#!/bin/bash
|
|
# test if HUP works for impstats
|
|
# This file is part of the rsyslog project, released under ASL 2.0
|
|
. ${srcdir:=.}/diag.sh init
|
|
generate_conf
|
|
add_conf '
|
|
module(load="../plugins/impstats/.libs/impstats"
|
|
log.file=`echo $RSYSLOG_OUT_LOG`
|
|
interval="1" ruleset="stats")
|
|
|
|
ruleset(name="stats") {
|
|
stop # nothing to do here
|
|
}
|
|
'
|
|
startup
|
|
./msleep 2000
|
|
mv $RSYSLOG_OUT_LOG ${RSYSLOG2_OUT_LOG}
|
|
issue_HUP
|
|
./msleep 2000
|
|
shutdown_when_empty
|
|
wait_shutdown
|
|
echo checking pre-HUP file
|
|
content_check 'global: origin=dynstats' ${RSYSLOG2_OUT_LOG}
|
|
echo checking post-HUP file
|
|
content_check 'global: origin=dynstats' $RSYSLOG_OUT_LOG
|
|
exit_test
|