rsyslog/tests/privdropuserid.sh
Rainer Gerhards 69ef6e329b fix bad bash coding style and disable shellcheck false positives
Also now permit interactivly running tests without explicitly setting
$srcdir. This now works if we are inside ./tests and fails, as before,
when we are in a different directory.

Detected by shellcheck via CodeFactor.io
2018-10-23 13:27:37 +02:00

34 lines
749 B
Bash
Executable File

#!/bin/bash
# addd 2016-03-24 by RGerhards, released under ASL 2.0
uname
if [ $(uname) = "SunOS" ] ; then
echo "Solaris: FIX ME"
exit 77
fi
. $srcdir/privdrop_common.sh
rsyslog_testbench_setup_testuser
. ${srcdir:=.}/diag.sh init
generate_conf
add_conf '
template(name="outfmt" type="list") {
property(name="msg" compressSpace="on")
constant(value="\n")
}
action(type="omfile" template="outfmt" file=`echo $RSYSLOG_OUT_LOG`)
'
add_conf "\$PrivDropToUserID ${TESTBENCH_TESTUSER[uid]}"
startup
shutdown_when_empty
wait_shutdown
grep "userid.*${TESTBENCH_TESTUSER[uid]}" < $RSYSLOG_OUT_LOG
if [ ! $? -eq 0 ]; then
echo "message indicating drop to uid #${TESTBENCH_TESTUSER[uid]} is missing:"
cat $RSYSLOG_OUT_LOG
exit 1
fi;
exit_test