diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 16:28:20 +0000 |
commit | dcc721a95bef6f0d8e6d8775b8efe33e5aecd562 (patch) | |
tree | 66a2774cd0ee294d019efd71d2544c70f42b2842 /tests/privdropabortonidfaillegacy.sh | |
parent | Initial commit. (diff) | |
download | rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.tar.xz rsyslog-dcc721a95bef6f0d8e6d8775b8efe33e5aecd562.zip |
Adding upstream version 8.2402.0.upstream/8.2402.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/privdropabortonidfaillegacy.sh')
-rwxr-xr-x | tests/privdropabortonidfaillegacy.sh | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/privdropabortonidfaillegacy.sh b/tests/privdropabortonidfaillegacy.sh new file mode 100755 index 0000000..bc4b8a1 --- /dev/null +++ b/tests/privdropabortonidfaillegacy.sh @@ -0,0 +1,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 |