1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

nsswitch: Use a swtich in the wbinfo test to lookup users

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13503

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Ralph Boehme <slow@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Fri Jul  6 17:14:44 CEST 2018 on sn-devel-144
This commit is contained in:
Andreas Schneider 2018-07-06 14:07:37 +02:00 committed by Andreas Schneider
parent a30ac853ff
commit 77be96379b

View File

@ -118,18 +118,21 @@ testit "getpwnam.domain.$DOMAIN.$USERNAME1" test_getpwnam "$DOMAIN/$USERNAME1" 0
testit "getpwnam.upn.$UPN_NAME1" test_getpwnam "$UPN1" 0 "$DOMAIN/$USERNAME1" || failed=$(expr $failed + 1)
# We should not be able to lookup the user just by the name
test_ret=0
test_output="$DOMAIN/$USERNAME1"
if [ "$ENVNAME" = "ad_member" ]; then
case ${ENVNAME} in
ad_member*)
# We should not be able to lookup the user just by the name
test_ret=2
test_output=""
fi
if [ "$ENVNAME" = "fl2008r2dc" ]; then
;;
fl2008r2dc*)
test_ret=0
test_output="$OWN_DOMAIN/$USERNAME1"
fi
;;
*)
test_ret=0
test_output="$DOMAIN/$USERNAME1"
;;
esac
testit "getpwnam.local.$USERNAME1" test_getpwnam "$USERNAME1" $test_ret $test_output || failed=$(expr $failed + 1)