Skip to content
Snippets Groups Projects
Commit 68318a45 authored by Jian Yu's avatar Jian Yu
Browse files

Branch HEAD

b=16650
i=eric.mei
i=grev

1) add sanity-gss.sh into acceptance-small.sh
2) improve krb5_login.sh to support automatic authentication
parent ea848c49
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ fi ...@@ -23,7 +23,7 @@ fi
[ "$DEBUG_OFF" ] || DEBUG_OFF="eval lctl set_param debug=\"$DEBUG_LVL\"" [ "$DEBUG_OFF" ] || DEBUG_OFF="eval lctl set_param debug=\"$DEBUG_LVL\""
[ "$DEBUG_ON" ] || DEBUG_ON="eval lctl set_param debug=0x33f0484" [ "$DEBUG_ON" ] || DEBUG_ON="eval lctl set_param debug=0x33f0484"
export TESTSUITE_LIST="RUNTESTS SANITY DBENCH BONNIE IOZONE FSX SANITYN LFSCK LIBLUSTRE REPLAY_SINGLE CONF_SANITY RECOVERY_SMALL REPLAY_OST_SINGLE REPLAY_DUAL INSANITY SANITY_QUOTA SANITY_SEC" export TESTSUITE_LIST="RUNTESTS SANITY DBENCH BONNIE IOZONE FSX SANITYN LFSCK LIBLUSTRE REPLAY_SINGLE CONF_SANITY RECOVERY_SMALL REPLAY_OST_SINGLE REPLAY_DUAL INSANITY SANITY_QUOTA SANITY_SEC SANITY_GSS"
if [ "$ACC_SM_ONLY" ]; then if [ "$ACC_SM_ONLY" ]; then
for O in $TESTSUITE_LIST; do for O in $TESTSUITE_LIST; do
...@@ -47,7 +47,9 @@ LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)} ...@@ -47,7 +47,9 @@ LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
. $LUSTRE/tests/test-framework.sh . $LUSTRE/tests/test-framework.sh
init_test_env $@ init_test_env $@
export SANITY_GSS="no"
if $GSS; then if $GSS; then
export SANITY_GSS="yes"
# liblustre doesn't support GSS # liblustre doesn't support GSS
export LIBLUSTRE=no export LIBLUSTRE=no
fi fi
...@@ -368,6 +370,12 @@ if [ "$SANITY_SEC" != "no" ]; then ...@@ -368,6 +370,12 @@ if [ "$SANITY_SEC" != "no" ]; then
SANITY_SEC="done" SANITY_SEC="done"
fi fi
if [ "$SANITY_GSS" != "no" ]; then
title sanity-gss
bash sanity-gss.sh
SANITY_GSS="done"
fi
RC=$? RC=$?
title FINISHED title FINISHED
echo "Finished at `date` in $((`date +%s` - $STARTTIME))s" echo "Finished at `date` in $((`date +%s` - $STARTTIME))s"
......
#!/bin/sh #!/bin/bash
# vim:expandtab:shiftwidth=4:softtabstop=4:tabstop=4:
#
# krb5_login.sh - obtain and cache Kerberos ticket-granting ticket
#
###############################################################################
# #
# nothing need for root # nothing need for root
# #
if [ $UID -eq 0 ]; then [ $UID -eq 0 ] && exit 0
exit 0
fi
klist -5 -s #
invalid=$? # list Kerberos 5 credentials silently
# exit status:
# 0 - klist finds a credentials cache
# 1 - klist does not find a credentials cache or the tickets are expired
#
klist -5 -s && exit 0
if [ $invalid -eq 0 ]; then # get the user name for uid $UID
exit 0 GSS_USER=$(getent passwd $UID | cut -d: -f1)
fi
GSS_PASS=${GSS_PASS:-"$GSS_USER"}
echo "***** refresh Kerberos V5 TGT for uid $UID *****" echo "***** refresh Kerberos V5 TGT for uid $UID *****"
if [ -z "$GSS_PASS" ]; then if [ -z "$GSS_PASS" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment