diff options
Diffstat (limited to 'tests/rscript_privdropgroupid.sh')
-rwxr-xr-x | tests/rscript_privdropgroupid.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/rscript_privdropgroupid.sh b/tests/rscript_privdropgroupid.sh new file mode 100755 index 0000000..b1eade2 --- /dev/null +++ b/tests/rscript_privdropgroupid.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# added 2021-09-23 by RGerhards, released under ASL 2.0 +. ${srcdir:=.}/diag.sh init +skip_platform "SunOS" "This test currently does not work on Solaris." +. $srcdir/privdrop_common.sh +rsyslog_testbench_setup_testuser + +generate_conf +add_conf ' +global(privdrop.group.keepsupplemental="on" privdrop.group.id="'${TESTBENCH_TESTUSER[gid]}'") +template(name="outfmt" type="list") { + property(name="msg" compressSpace="on") + constant(value="\n") +} +action(type="omfile" template="outfmt" file="'$RSYSLOG_OUT_LOG'") +' +startup +shutdown_when_empty +wait_shutdown +content_check --regex "groupid.*${TESTBENCH_TESTUSER[gid]}" +exit_test |