rsyslog/tests/privdropabortonidfail.sh
Andre lorbach 6b3bba9e02 PrivDropToUser: fix abortOnIDResolutionFail handling #2
For new configuration style, security.abortonidresolutionfail was
not checked in rainerscript.

see also: https://github.com/rsyslog/rsyslog/pull/4710
closes: https://github.com/rsyslog/rsyslog/issues/4642
2021-10-13 10:57:22 +02:00

42 lines
1.1 KiB
Bash
Executable File

#!/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")
}
action( type="omfile"
template="outfmt"
file="'${RSYSLOG_OUT_LOG}'"
)
action( type="omfile"
template="outfmt"
file="'${RSYSLOG_DYNNAME}'.dummy.log"
FileOwner="'${TESTBENCH_TESTUSER1}'"
FileGroup="'${TESTBENCH_TESTUSER1}'"
DirOwner="'${TESTBENCH_TESTUSER2}'"
DirGroup="'${TESTBENCH_TESTUSER2}'"
)
'
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