mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Added missing configuration options
Missing options were added to Web UI's IPA Server/Configuration page. * ipaconfigstring * ipaselinuxusermaporder * ipaselinuxusermapdefault https://fedorahosted.org/freeipa/ticket/2285 https://fedorahosted.org/freeipa/ticket/2400
This commit is contained in:
parent
a11f1bb2c2
commit
a7ced67e77
@ -59,6 +59,11 @@ IPA.config.entity = function(spec) {
|
||||
'ipadefaultloginshell',
|
||||
'ipamaxusernamelength',
|
||||
'ipapwdexpadvnotify',
|
||||
{
|
||||
name: 'ipaconfigstring',
|
||||
type: 'checkboxes',
|
||||
options: IPA.create_options(['AllowLMhash','AllowNThash'])
|
||||
},
|
||||
{
|
||||
type: 'checkbox',
|
||||
name: 'ipamigrationenabled'
|
||||
@ -79,6 +84,14 @@ IPA.config.entity = function(spec) {
|
||||
name: 'ipagroupobjectclasses'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'selinux',
|
||||
label: IPA.messages.objects.config.selinux,
|
||||
fields: [
|
||||
'ipaselinuxusermaporder',
|
||||
'ipaselinuxusermapdefault'
|
||||
]
|
||||
}
|
||||
],
|
||||
needs_update: true
|
||||
|
@ -20,6 +20,8 @@
|
||||
"ipapwdexpadvnotify": "rscwo",
|
||||
"ipasearchrecordslimit": "rscwo",
|
||||
"ipasearchtimelimit": "rscwo",
|
||||
"ipaselinuxusermapdefault": "rscwo",
|
||||
"ipaselinuxusermaporder": "rscwo",
|
||||
"ipauserobjectclasses": "rscwo",
|
||||
"ipausersearchfields": "rscwo",
|
||||
"nsaccountlock": "rscwo",
|
||||
@ -72,6 +74,12 @@
|
||||
"ipasearchtimelimit": [
|
||||
"2"
|
||||
],
|
||||
"ipaselinuxusermapdefault": [
|
||||
"guest_u:s0"
|
||||
],
|
||||
"ipaselinuxusermaporder": [
|
||||
"guest_u:s0$xguest_u:s0$user_u:s0-s0:c0.c1023$staff_u:s0-s0:c0.c1023$unconfined_u:s0-s0:c0.c1023"
|
||||
],
|
||||
"ipauserobjectclasses": [
|
||||
"top",
|
||||
"person",
|
||||
|
@ -179,6 +179,7 @@
|
||||
"config": {
|
||||
"group": "Group Options",
|
||||
"search": "Search Options",
|
||||
"selinux": "SELinux Options",
|
||||
"user": "User Options"
|
||||
},
|
||||
"delegation": {},
|
||||
|
@ -315,6 +315,7 @@ class i18n_messages(Command):
|
||||
"config": {
|
||||
"group": _("Group Options"),
|
||||
"search": _("Search Options"),
|
||||
"selinux": _("SELinux Options"),
|
||||
"user": _("User Options"),
|
||||
},
|
||||
"delegation": {
|
||||
|
Loading…
Reference in New Issue
Block a user