mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-12 09:11:55 -06:00
Add authentication identificator to host page
Also move strings which are connected with authentication indicators to authtype dict. This place is more general than have them in service dict. It's nicer when these strings are not used only on service page. Part of: https://fedorahosted.org/freeipa/ticket/5872 Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
This commit is contained in:
parent
0855b014b1
commit
55049fceb9
@ -108,6 +108,26 @@ return {
|
||||
name: 'macaddress',
|
||||
flags: ['w_if_no_aci']
|
||||
},
|
||||
{
|
||||
$type: 'custom_checkboxes',
|
||||
label: '@i18n:authtype.auth_indicators',
|
||||
name: 'krbprincipalauthind',
|
||||
add_dialog_title: '@i18n:authtype.custom_auth_ind_title',
|
||||
add_field_label: '@i18n:authtype.auth_indicator',
|
||||
options: [
|
||||
{
|
||||
label: '@i18n:authtype.otp',
|
||||
value: 'otp'
|
||||
},
|
||||
{
|
||||
label: '@i18n:authtype.type_radius',
|
||||
value: 'radius'
|
||||
}
|
||||
],
|
||||
tooltip: {
|
||||
title: '@mc-opt:host_add:krbprincipalauthind:doc'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'ipakrbokasdelegate',
|
||||
$type: 'checkbox',
|
||||
|
@ -49,6 +49,9 @@
|
||||
"show_results": "Show Results"
|
||||
},
|
||||
"authtype": {
|
||||
"auth_indicators": "Authentication indicators",
|
||||
"auth_indicator": "Authentication indicator",
|
||||
"custom_auth_ind_title": "Add Custom Authentication Indicator",
|
||||
"config_tooltip": "<p>Implicit method (password) will be used if no method is chosen.</p><p><strong>Password + Two-factor:</strong> LDAP and Kerberos allow authentication with either one of the authentication types but Kerberos uses pre-authentication method which requires to use armor ccache.</p><p><strong>RADIUS with another type:</strong> Kerberos always use RADIUS, but LDAP never does. LDAP only recognize the password and two-factor authentication options.</p>",
|
||||
"otp": "OTP",
|
||||
"type_otp": "Two factor authentication (password + OTP)",
|
||||
@ -543,10 +546,7 @@
|
||||
"label_singular": "Server Role",
|
||||
},
|
||||
"service": {
|
||||
"auth_indicators": "Authentication indicators",
|
||||
"auth_indicator": "Authentication indicator",
|
||||
"certificate": "Service Certificate",
|
||||
"custom_auth_ind_title": "Add Custom Authentication Indicator",
|
||||
"delete_key_unprovision": "Delete Key, Unprovision",
|
||||
"details": "Service Settings",
|
||||
"host": "Host Name",
|
||||
|
@ -190,7 +190,10 @@ class i18n_messages(Command):
|
||||
"show_results": _("Show Results"),
|
||||
},
|
||||
"authtype": {
|
||||
"auth_indicators": _("Authentication indicators"),
|
||||
"auth_indicator": _("Authentication indicator"),
|
||||
"config_tooltip": _("<p>Implicit method (password) will be used if no method is chosen.</p><p><strong>Password + Two-factor:</strong> LDAP and Kerberos allow authentication with either one of the authentication types but Kerberos uses pre-authentication method which requires to use armor ccache.</p><p><strong>RADIUS with another type:</strong> Kerberos always use RADIUS, but LDAP never does. LDAP only recognize the password and two-factor authentication options.</p>"),
|
||||
"custom_auth_ind_title": _("Add Custom Authentication Indicator"),
|
||||
"otp": _("OTP"),
|
||||
"type_otp": _("Two factor authentication (password + OTP)"),
|
||||
"type_password": _("Password"),
|
||||
@ -688,10 +691,7 @@ class i18n_messages(Command):
|
||||
"label_singular": _("Server Role"),
|
||||
},
|
||||
"service": {
|
||||
"auth_indicators": _("Authentication indicators"),
|
||||
"auth_indicator": _("Authentication indicator"),
|
||||
"certificate": _("Service Certificate"),
|
||||
"custom_auth_ind_title": _("Add Custom Authentication Indicator"),
|
||||
"delete_key_unprovision": _("Delete Key, Unprovision"),
|
||||
"details": _("Service Settings"),
|
||||
"host": _("Host Name"),
|
||||
|
Loading…
Reference in New Issue
Block a user