mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
7f14776ba7
If we do not set it will add the credentials to the system default credential cache, which is e.g. FILE:/tmp/krb5cc_1000. Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
26 lines
466 B
Bash
Executable File
26 lines
466 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: test_wbinfo_simple.sh <wbinfo args>
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
ADDARGS="$*"
|
|
|
|
incdir=`dirname $0`/../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
KRB5CCNAME_PATH="$PREFIX/test_wbinfo_simple_krb5ccname"
|
|
rm -f $KRB5CCNAME_PATH
|
|
|
|
KRB5CCNAME="FILE:$KRB5CCNAME_PATH"
|
|
export KRB5CCNAME
|
|
|
|
testit "wbinfo" $VALGRIND $BINDIR/wbinfo --krb5ccname="$KRB5CCNAME" $ADDARGS || failed=`expr $failed + 1`
|
|
|
|
rm -f $KRB5CCNAME_PATH
|
|
|
|
testok $0 $failed
|