summaryrefslogtreecommitdiffstats
path: root/install
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 /install
parent5f3142c1e92856531ca8059b082ee9dc4c0af270 (diff)
downloadfreeipa.git-331856b13c4d73330ac97df9b2815622660f327d.tar.gz
freeipa.git-331856b13c4d73330ac97df9b2815622660f327d.tar.xz
freeipa.git-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 'install')
-rw-r--r--install/ui/src/freeipa/serverconfig.js4
1 files changed, 2 insertions, 2 deletions
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
+});