From 1fcbad4bcb6c3a98dc102c55bc17783ef7baff34 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 6 Jun 2012 13:00:44 +0200 Subject: Update of serverconfig ipaconfigstring options Patch "Add options to reduce writes from KDC" adds two more possible values to config plugins ipaconfigstring configuration options. These are: * KDC:Disable Last Success * KDC:Disable Lockout This patch adds them to Web UI https://fedorahosted.org/freeipa/ticket/2734 --- install/ui/serverconfig.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install/ui/serverconfig.js b/install/ui/serverconfig.js index 2b9be6ede..3e61f6509 100644 --- a/install/ui/serverconfig.js +++ b/install/ui/serverconfig.js @@ -62,7 +62,10 @@ IPA.config.entity = function(spec) { { name: 'ipaconfigstring', type: 'checkboxes', - options: IPA.create_options(['AllowLMhash','AllowNThash']) + options: IPA.create_options([ + 'AllowLMhash', 'AllowNThash', + 'KDC:Disable Last Success', 'KDC:Disable Lockout' + ]) }, { type: 'checkbox', -- cgit