blob: bc4b8a18fde5656577f20ca74c0c080033155c3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
# add 2021-10-12 by alorbach, released under ASL 2.0
. ${srcdir:=.}/diag.sh init
#export RSYSLOG_DEBUG="debug nostdout noprintmutexaction"
#export RSYSLOG_DEBUGLOG="$RSYSLOG_DYNNAME.debuglog"
skip_platform "SunOS" "This test currently does not work on Solaris."
export TESTBENCH_TESTUSER1="USER_${RSYSLOG_DYNNAME}_1"
export TESTBENCH_TESTUSER2="USER_${RSYSLOG_DYNNAME}_2"
generate_conf
add_conf '
global(
security.abortOnIDResolutionFail="off"
)
template(name="outfmt" type="list") {
property(name="msg" compressSpace="on")
constant(value="\n")
}
$FileOwner '${TESTBENCH_TESTUSER1}'
$FileGroup '${TESTBENCH_TESTUSER1}'
$DirOwner '${TESTBENCH_TESTUSER2}'
$DirGroup '${TESTBENCH_TESTUSER2}'
action( type="omfile"
template="outfmt"
file=`echo $RSYSLOG_OUT_LOG`)
'
startup
shutdown_when_empty
wait_shutdown
content_check --regex "ID for user '${TESTBENCH_TESTUSER1}' could not be found"
content_check --regex "ID for user '${TESTBENCH_TESTUSER2}' could not be found"
exit_test
|