diff options
author | Pavel Vomacka <pvomacka@redhat.com> | 2016-06-10 16:16:57 +0200 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-06-15 09:59:50 +0200 |
commit | 5e5df4abf037161d9c9d9fd5e6051f861dff4bd1 (patch) | |
tree | bf5d46b0034485360f24f169fd58c16c9d791c32 /ipaserver/plugins/internal.py | |
parent | f4dd2446cd8b2c2a814c7bcb95415eb186b0a70f (diff) | |
download | freeipa-5e5df4abf037161d9c9d9fd5e6051f861dff4bd1.tar.gz freeipa-5e5df4abf037161d9c9d9fd5e6051f861dff4bd1.tar.xz freeipa-5e5df4abf037161d9c9d9fd5e6051f861dff4bd1.zip |
Extend caacl entity
There is new checkbox in adding new caacl which can set whether the ACL applies on all
CAs or not. Also there is a new table with CAs on which is current ACL applied. User
can add and remove CAs from this table.
Part of: https://fedorahosted.org/freeipa/ticket/5939
Reviewed-By: Fraser Tweedale <ftweedal@redhat.com>
Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
Diffstat (limited to 'ipaserver/plugins/internal.py')
-rw-r--r-- | ipaserver/plugins/internal.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ipaserver/plugins/internal.py b/ipaserver/plugins/internal.py index 5cb78c5ef..1d83b4648 100644 --- a/ipaserver/plugins/internal.py +++ b/ipaserver/plugins/internal.py @@ -351,12 +351,16 @@ class i18n_messages(Command): "indirect": _("Indirect"), }, "caacl": { + "all": _("All"), + "any_ca": _("Any CA"), "any_host": _("Any Host"), "any_service": _("Any Service"), "any_profile": _("Any Profile"), "anyone": _("Anyone"), "ipaenabledflag": _("Rule status"), + "no_ca_msg": _("If no CAs are specified, requests to the default CA are allowed."), "profile": _("Profiles"), + "specified_cas": _("Specified CAs"), "specified_hosts": _("Specified Hosts and Groups"), "specified_profiles": _("Specified Profiles"), "specified_services": _("Specified Services and Groups"), |