Remove AllowLMhash from the allowed IPA config strings

Fixes https://fedorahosted.org/freeipa/ticket/3795
This commit is contained in:
Sumit Bose
2013-10-29 11:37:03 +01:00
committed by Martin Kosek
parent 941e9686a3
commit b5e60c2020
5 changed files with 3 additions and 5 deletions

View File

@@ -499,7 +499,7 @@ args: 0,24,3
option: Str('addattr*', cli_name='addattr', exclude='webui')
option: Flag('all', autofill=True, cli_name='all', default=False, exclude='webui')
option: Str('delattr*', cli_name='delattr', exclude='webui')
option: StrEnum('ipaconfigstring', attribute=True, autofill=False, cli_name='ipaconfigstring', csv=True, multivalue=True, required=False, values=(u'AllowLMhash', u'AllowNThash', u'KDC:Disable Last Success', u'KDC:Disable Lockout'))
option: StrEnum('ipaconfigstring', attribute=True, autofill=False, cli_name='ipaconfigstring', csv=True, multivalue=True, required=False, values=(u'AllowNThash', u'KDC:Disable Last Success', u'KDC:Disable Lockout'))
option: Str('ipadefaultemaildomain', attribute=True, autofill=False, cli_name='emaildomain', multivalue=False, required=False)
option: Str('ipadefaultloginshell', attribute=True, autofill=False, cli_name='defaultshell', multivalue=False, required=False)
option: Str('ipadefaultprimarygroup', attribute=True, autofill=False, cli_name='defaultgroup', multivalue=False, required=False)

View File

@@ -69,7 +69,7 @@ return {
name: 'ipaconfigstring',
$type: 'checkboxes',
options: IPA.create_options([
'AllowLMhash', 'AllowNThash',
'AllowNThash',
'KDC:Disable Last Success', 'KDC:Disable Lockout'
])
},

View File

@@ -2278,7 +2278,6 @@
"name": "ipaconfigstring",
"type": "unicode",
"values": [
"AllowLMhash",
"AllowNThash",
"KDC:Disable Last Success",
"KDC:Disable Lockout"

View File

@@ -580,7 +580,6 @@
"name": "ipaconfigstring",
"type": "unicode",
"values": [
"AllowLMhash",
"AllowNThash",
"KDC:Disable Last Success",
"KDC:Disable Lockout"

View File

@@ -178,7 +178,7 @@ class config(LDAPObject):
cli_name='ipaconfigstring',
label=_('Password plugin features'),
doc=_('Extra hashes to generate in password plug-in'),
values=(u'AllowLMhash', u'AllowNThash',
values=(u'AllowNThash',
u'KDC:Disable Last Success', u'KDC:Disable Lockout'),
csv=True,
),