mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
5439ecf723
This test also verifies the KRB5CCNAME environment variable is set after a successful PAM authentication with Kerberos. Signed-off-by: Samuel Cabrero <scabrero@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
47 lines
1.2 KiB
Bash
Executable File
47 lines
1.2 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
PYTHON="$1"
|
|
PAM_WRAPPER_SO_PATH="$2"
|
|
shift 2
|
|
|
|
DOMAIN="$1"
|
|
export DOMAIN
|
|
USERNAME="$2"
|
|
export USERNAME
|
|
PASSWORD="$3"
|
|
export PASSWORD
|
|
shift 3
|
|
|
|
PAM_OPTIONS="$1"
|
|
export PAM_OPTIONS
|
|
shift 1
|
|
|
|
PAM_WRAPPER_PATH="$BINDIR/default/third_party/pam_wrapper"
|
|
|
|
pam_winbind="$BINDIR/plugins/pam_winbind.so"
|
|
service_dir="$SELFTEST_TMPDIR/pam_services"
|
|
service_file="$service_dir/samba"
|
|
|
|
mkdir $service_dir
|
|
echo "auth required $pam_winbind debug debug_state $PAM_OPTIONS" > $service_file
|
|
echo "account required $pam_winbind debug debug_state $PAM_OPTIONS" >> $service_file
|
|
echo "password required $pam_winbind debug debug_state $PAM_OPTIONS" >> $service_file
|
|
echo "session required $pam_winbind debug debug_state $PAM_OPTIONS" >> $service_file
|
|
|
|
PAM_WRAPPER="1"
|
|
export PAM_WRAPPER
|
|
PAM_WRAPPER_SERVICE_DIR="$service_dir"
|
|
export PAM_WRAPPER_SERVICE_DIR
|
|
LD_PRELOAD="$LD_PRELOAD:$PAM_WRAPPER_SO_PATH"
|
|
export LD_PRELOAD
|
|
|
|
PAM_WRAPPER_DEBUGLEVEL=${PAM_WRAPPER_DEBUGLEVEL:="3"}
|
|
export PAM_WRAPPER_DEBUGLEVEL
|
|
|
|
PYTHONPATH="$PYTHONPATH:$PAM_WRAPPER_PATH:$(dirname $0)" $PYTHON -m samba.subunit.run samba.tests.pam_winbind_setcred
|
|
exit_code=$?
|
|
|
|
rm -rf $service_dir
|
|
|
|
exit $exit_code
|