mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-19 12:40:42 +01:00
changes some of the test commands to use bash functions includes some small bug fixes to tests where bugs were previously not seen due to different plumbing.
34 lines
735 B
Bash
Executable File
34 lines
735 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="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
|