From 331856b13c4d73330ac97df9b2815622660f327d Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Mon, 4 Mar 2013 14:52:10 +0100 Subject: 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 --- ipalib/plugins/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipalib/plugins/config.py') 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, ), ) -- cgit