1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/source3/script/tests/test_net_machine_account.sh
Andreas Schneider 9cbd4a3abd s3:tests: Do not export UID_WRAPPER_ROOT in test_net_machine_account
Just set it for the test.

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2023-06-16 20:28:30 +00:00

35 lines
582 B
Bash
Executable File

#!/bin/sh
# Reproducer for https://bugzilla.samba.org/show_bug.cgi?id=14908
if [ $# -lt 2 ]; then
echo "Usage: $0 NET CONFFILE SERVER_IP"
exit 1
fi
NET="$1"
shift
CONFFILE="$1"
shift
SERVER_IP="$1"
shift
incdir=$(dirname $0)/../../../testprogs/blackbox
. $incdir/subunit.sh
failed=0
net_ads_user() {
_out=$(UID_WRAPPER_INITIAL_RUID=0 UID_WRAPPER_INITIAL_EUID=0 \
${VALGRIND} "${NET}" rpc user \
--configfile="${CONFFILE}" -S "${SERVER_IP}" -P)
_ret=$?
echo "${_out}"
return ${_ret}
}
testit "net_ads_user" net_ads_user || failed=$((failed + 1))
testok $0 $failed