1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# Test authenticate and session without AFS (debug). -*- conf -*-
#
# Copyright 2015 Russ Allbery <eagle@eyrie.org>
#
# See LICENSE for licensing terms.
[options]
auth = debug
session = debug
[run]
authenticate = PAM_SUCCESS
setcred(DELETE_CRED) = PAM_SUCCESS
setcred(ESTABLISH_CRED) = PAM_SUCCESS
setcred(REFRESH_CRED) = PAM_SUCCESS
setcred(REINITIALIZE_CRED) = PAM_SUCCESS
open_session = PAM_IGNORE
close_session = PAM_IGNORE
[output]
DEBUG pam_sm_setcred: entry (delete)
ERR skipping, AFS apparently not available
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_setcred: entry (establish)
ERR skipping, AFS apparently not available
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_setcred: entry (refresh)
ERR skipping, AFS apparently not available
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_setcred: entry (reinit)
ERR skipping, AFS apparently not available
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_open_session: entry
ERR skipping, AFS apparently not available
DEBUG pam_sm_open_session: exit (ignore)
DEBUG pam_sm_close_session: entry
ERR skipping, AFS apparently not available
DEBUG pam_sm_close_session: exit (ignore)
|