blob: 90a57956a7b29d37d849e45f174b26c8ce78240f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
# add 2020-12-02 by Rainer Gerhards, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
module(load="../plugins/immark/.libs/immark" interval="1" use.syslogcall="off")
if $inputname == "immark" then
action(type="omfile" file="'$RSYSLOG_OUT_LOG'")
'
startup
printf 'sleeping a bit so we get mark messages...\n'
sleep 3 # this should be good even on slow machines - we need just one
shutdown_when_empty
wait_shutdown
content_check "rsyslogd: -- MARK --"
exit_test
|