URL: https://github.com/freeipa/freeipa/pull/421 Author: Akasurde Title: #421: Update warning message for replica install Action: synchronized
To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/421/head:pr421 git checkout pr421
From 75d4cfd62b76ef62c165fc1f2c6c5670c88896a2 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde <[email protected]> Date: Mon, 30 Jan 2017 19:22:12 +0530 Subject: [PATCH] Update warning message for replica install New warning message in replica install describes more about "insufficient privilege" error Fixes https://fedorahosted.org/freeipa/ticket/6352 Signed-off-by: Abhijeet Kasurde <[email protected]> --- ipaserver/install/server/replicainstall.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py index 18222c8..710027e 100644 --- a/ipaserver/install/server/replicainstall.py +++ b/ipaserver/install/server/replicainstall.py @@ -1235,7 +1235,11 @@ def promote_check(installer): except errors.ACIError: root_logger.debug(traceback.format_exc()) - raise ScriptError("\nInsufficient privileges to promote the server.") + raise ScriptError("\nInsufficient privileges to promote the server." + "\nPossible issues:" + "\n- An user has insufficient privileges" + "\n- Thin Client has insufficient privileges " + "to become IPA Replica Server") except errors.LDAPError: root_logger.debug(traceback.format_exc()) raise ScriptError("\nUnable to connect to LDAP server %s" %
-- Manage your subscription for the Freeipa-devel mailing list: https://www.redhat.com/mailman/listinfo/freeipa-devel Contribute to FreeIPA: http://www.freeipa.org/page/Contribute/Code
