diff options
author | Martin Kosek <mkosek@redhat.com> | 2012-10-02 17:06:10 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2012-10-03 08:53:41 +0200 |
commit | 43f4ca710bfcf2e4076f95b70e8cfc292becec7f (patch) | |
tree | 623b531013504b62733a9ca9446c2e509a2b20e6 /ipalib/plugins/config.py | |
parent | 941d1e8701c0c3a22ab4e6320686761b64d89c82 (diff) | |
download | freeipa-43f4ca710bfcf2e4076f95b70e8cfc292becec7f.tar.gz freeipa-43f4ca710bfcf2e4076f95b70e8cfc292becec7f.tar.xz freeipa-43f4ca710bfcf2e4076f95b70e8cfc292becec7f.zip |
Only use service PAC type as an override
PAC type (ipakrbauthzdata attribute) was being filled for all new
service automatically. However, the PAC type attribute was designed
to serve only as an override to default PAC type configured in
IPA config. With PAC type set in all services, users would have
to update all services to get new PAC types configured in IPA config.
Do not set PAC type for new services. Add new NONE value meaning that
we do not want any PAC for the service (empty/missing attribute means
that the default PAC type list from IPA config is read).
https://fedorahosted.org/freeipa/ticket/2184
Diffstat (limited to 'ipalib/plugins/config.py')
-rw-r--r-- | ipalib/plugins/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/plugins/config.py b/ipalib/plugins/config.py index 1c62e0d94..5f916903b 100644 --- a/ipalib/plugins/config.py +++ b/ipalib/plugins/config.py @@ -192,8 +192,8 @@ class config(LDAPObject): ), StrEnum('ipakrbauthzdata*', cli_name='pac_type', - label=_('PAC type'), - doc=_('Default types of PAC for new services'), + label=_('Default PAC types'), + doc=_('Default types of PAC supported for services'), values=(u'MS-PAC', u'PAD'), csv=True, ), |