65 lines
3.0 KiB
Diff
65 lines
3.0 KiB
Diff
From 2deaaa788cbdde22d5b15566599fdcf7a10f02c6 Mon Sep 17 00:00:00 2001
|
|
From: Florence Blanc-Renaud <flo@redhat.com>
|
|
Date: Feb 02 2023 10:08:26 +0000
|
|
Subject: automember-rebuild: add a notice about high CPU usage
|
|
|
|
|
|
The automember-rebuild task may require high CPU usage
|
|
if many users/hosts/groups are processed.
|
|
Add a note in the ipa automember-rebuild CLI output
|
|
and in the WebUI confirmation message.
|
|
|
|
Fixes: https://pagure.io/freeipa/issue/9320
|
|
Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
|
|
Reviewed-By: Francisco Trivino <ftrivino@redhat.com>
|
|
|
|
---
|
|
|
|
diff --git a/install/ui/test/data/i18n_messages.json b/install/ui/test/data/i18n_messages.json
|
|
index 49d2883..5b73548 100644
|
|
--- a/install/ui/test/data/i18n_messages.json
|
|
+++ b/install/ui/test/data/i18n_messages.json
|
|
@@ -7,7 +7,7 @@
|
|
"actions": {
|
|
"apply": "Apply",
|
|
"automember_rebuild": "Rebuild auto membership",
|
|
- "automember_rebuild_confirm": "Are you sure you want to rebuild auto membership?",
|
|
+ "automember_rebuild_confirm": "Are you sure you want to rebuild auto membership? In case of a high number of users, hosts or groups, the operation may require high CPU usage.",
|
|
"automember_rebuild_success": "Automember rebuild membership task completed",
|
|
"confirm": "Are you sure you want to proceed with the action?",
|
|
"delete_confirm": "Are you sure you want to delete ${object}?",
|
|
diff --git a/ipaclient/plugins/automember.py b/ipaclient/plugins/automember.py
|
|
index df4a2e5..7108dc9 100644
|
|
--- a/ipaclient/plugins/automember.py
|
|
+++ b/ipaclient/plugins/automember.py
|
|
@@ -34,3 +34,11 @@ class automember_add_condition(MethodOverride):
|
|
flags=['suppress_empty'],
|
|
),
|
|
)
|
|
+
|
|
+
|
|
+@register(override=True, no_fail=True)
|
|
+class automember_rebuild(MethodOverride):
|
|
+ def interactive_prompt_callback(self, kw):
|
|
+ msg = _('IMPORTANT: In case of a high number of users, hosts or '
|
|
+ 'groups, the operation may require high CPU usage.')
|
|
+ self.Backend.textui.print_plain(msg)
|
|
diff --git a/ipaserver/plugins/internal.py b/ipaserver/plugins/internal.py
|
|
index 5ffa7a2..e1e920f 100644
|
|
--- a/ipaserver/plugins/internal.py
|
|
+++ b/ipaserver/plugins/internal.py
|
|
@@ -160,7 +160,11 @@ class i18n_messages(Command):
|
|
"actions": {
|
|
"apply": _("Apply"),
|
|
"automember_rebuild": _("Rebuild auto membership"),
|
|
- "automember_rebuild_confirm": _("Are you sure you want to rebuild auto membership?"),
|
|
+ "automember_rebuild_confirm": _(
|
|
+ "Are you sure you want to rebuild auto membership? In case of "
|
|
+ "a high number of users, hosts or groups, the operation "
|
|
+ "may require high CPU usage."
|
|
+ ),
|
|
"automember_rebuild_success": _("Automember rebuild membership task completed"),
|
|
"confirm": _("Are you sure you want to proceed with the action?"),
|
|
"delete_confirm": _("Are you sure you want to delete ${object}?"),
|
|
|