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
|
# Test behavior without a ticket (debug). -*- conf -*-
#
# Copyright 2015 Russ Allbery <eagle@eyrie.org>
#
# See LICENSE for licensing terms.
[options]
auth = program=%0 debug
session = program=%0 debug
[run]
setcred(ESTABLISH_CRED) = PAM_SUCCESS
setcred(REFRESH_CRED) = PAM_SUCCESS
setcred(REINITIALIZE_CRED) = PAM_SUCCESS
open_session = PAM_SUCCESS
close_session = PAM_SUCCESS
[output]
DEBUG pam_sm_setcred: entry (establish)
DEBUG skipping tokens, no Kerberos ticket cache
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_setcred: entry (refresh)
DEBUG skipping tokens, no Kerberos ticket cache
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_setcred: entry (reinit)
DEBUG skipping tokens, no Kerberos ticket cache
DEBUG pam_sm_setcred: exit (success)
DEBUG pam_sm_open_session: entry
DEBUG skipping tokens, no Kerberos ticket cache
DEBUG pam_sm_open_session: exit (success)
DEBUG pam_sm_close_session: entry
DEBUG skipping, no open session
DEBUG pam_sm_close_session: exit (success)
|