summaryrefslogtreecommitdiffstats
path: root/ipalib/plugins/config.py
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2013-03-04 14:52:10 +0100
committerMartin Kosek <mkosek@redhat.com>2013-03-08 10:46:00 +0100
commit331856b13c4d73330ac97df9b2815622660f327d (patch)
tree2aef000a9a04c990bd0703ac13b3724f10c1a3d3 /ipalib/plugins/config.py
parent5f3142c1e92856531ca8059b082ee9dc4c0af270 (diff)
downloadfreeipa-331856b13c4d73330ac97df9b2815622660f327d.tar.gz
freeipa-331856b13c4d73330ac97df9b2815622660f327d.tar.xz
freeipa-331856b13c4d73330ac97df9b2815622660f327d.zip
Allow 'nfs:NONE' in global configuration
This patch adds 'nfs:NONE' as an allowed entry for the global authorization data type in the CLI and WebUI. This is an ad-hoc solution to make sure that the new default value for the NFS service is not removed by chance. This patch should be removed if a more generic solution is implemented to modify service:TYPE style values of the authorization data type. https://fedorahosted.org/freeipa/ticket/2960
Diffstat (limited to 'ipalib/plugins/config.py')
-rw-r--r--ipalib/plugins/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipalib/plugins/config.py b/ipalib/plugins/config.py
index db7fce7cb..33eb174ec 100644
--- a/ipalib/plugins/config.py
+++ b/ipalib/plugins/config.py
@@ -194,7 +194,7 @@ class config(LDAPObject):
cli_name='pac_type',
label=_('Default PAC types'),
doc=_('Default types of PAC supported for services'),
- values=(u'MS-PAC', u'PAD'),
+ values=(u'MS-PAC', u'PAD', u'nfs:NONE'),
csv=True,
),
)