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 --- install/ui/src/freeipa/serverconfig.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install') diff --git a/install/ui/src/freeipa/serverconfig.js b/install/ui/src/freeipa/serverconfig.js index 347c46c1..1c6dd219 100644 --- a/install/ui/src/freeipa/serverconfig.js +++ b/install/ui/src/freeipa/serverconfig.js @@ -102,7 +102,7 @@ IPA.serverconfig.entity = function(spec) { { name: 'ipakrbauthzdata', type: 'checkboxes', - options: IPA.create_options(['MS-PAC', 'PAD']) + options: IPA.create_options(['MS-PAC', 'PAD', 'nfs:NONE']) } ] } @@ -117,4 +117,4 @@ IPA.serverconfig.entity = function(spec) { IPA.register('config', IPA.serverconfig.entity); return {}; -}); \ No newline at end of file +}); -- cgit