diff options
author | rcritten@redhat.com <rcritten@redhat.com> | 2007-10-03 17:37:13 -0400 |
---|---|---|
committer | rcritten@redhat.com <rcritten@redhat.com> | 2007-10-03 17:37:13 -0400 |
commit | 53e872fb72098a8c504613c0946cecfe31d5fab7 (patch) | |
tree | aa11252b777403e3d9cad75699ae24d900d069d8 /ipa-python | |
parent | 1cef67e2e16ec137a1d04f9f4f99694ed36e3d28 (diff) | |
download | freeipa-53e872fb72098a8c504613c0946cecfe31d5fab7.tar.gz freeipa-53e872fb72098a8c504613c0946cecfe31d5fab7.tar.xz freeipa-53e872fb72098a8c504613c0946cecfe31d5fab7.zip |
Try to catch more error conditions during installation
Modify the way we detect SELinux to use selinuxenabled instead of using
a try/except.
Handle SASL/GSSAPI authentication failures when getting a connection
Diffstat (limited to 'ipa-python')
-rw-r--r-- | ipa-python/ipaerror.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ipa-python/ipaerror.py b/ipa-python/ipaerror.py index 67bd96dc3..9e9a74140 100644 --- a/ipa-python/ipaerror.py +++ b/ipa-python/ipaerror.py @@ -144,3 +144,8 @@ CONNECTION_NO_CCACHE = gen_error_code( CONNECTION_CATEGORY, 0x0002, "No Kerberos credentials cache is available. Connection cannot be made.") + +CONNECTION_GSSAPI_CREDENTIALS = gen_error_code( + CONNECTION_CATEGORY, + 0x0003, + "GSSAPI Authorization error") |