diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2014-10-17 15:30:34 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2014-10-20 10:13:47 +0200 |
commit | d8f05d88414217c57aba0abbd43d1623fba477f8 (patch) | |
tree | 914a2efa089cfe4f8b167034aa4a91e65f185bff /ipalib | |
parent | 41bf0ba9403962140a75b28e0b279248ec101a0a (diff) | |
download | freeipa-d8f05d88414217c57aba0abbd43d1623fba477f8.tar.gz freeipa-d8f05d88414217c57aba0abbd43d1623fba477f8.tar.xz freeipa-d8f05d88414217c57aba0abbd43d1623fba477f8.zip |
webui: management of keytab permissions
https://fedorahosted.org/freeipa/ticket/4419
Reviewed-By: Endi Sukma Dewata <edewata@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r-- | ipalib/plugins/internal.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ipalib/plugins/internal.py b/ipalib/plugins/internal.py index c7f400a90..09e09dc1e 100644 --- a/ipalib/plugins/internal.py +++ b/ipalib/plugins/internal.py @@ -285,6 +285,14 @@ class i18n_messages(Command): "search": _("Search"), }, "false": _("False"), + "keytab": { + "add_create": _("Allow ${other_entity} to create keytab of ${primary_key}"), + "add_retrive": _("Allow ${other_entity} to retrieve keytab of ${primary_key}"), + "allowed_to_create": _("Allowed to create keytab"), + "allowed_to_retrieve": _("Allowed to retrieve keytab"), + "remove_create": _("Disallow ${other_entity} to create keytab of ${primary_key}"), + "remove_retrieve": _("Disallow ${other_entity} to retrieve keytab of ${primary_key}"), + }, "krbauthzdata": { "inherited": _("Inherited from server configuration"), "mspac": _("MS-PAC"), |