URL: https://github.com/freeipa/freeipa/pull/421 Author: Akasurde Title: #421: Update warning message for replica install Action: opened
PR body: """ 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]> """ 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 c1ebdbfea5655cb9517d2cee7e9ec43faf71a4e0 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..378ad7c 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." + "\nCheck following things before proceeding" + "\n- If host entry for this host exists on " + "IPA Master\n- If host is a member of " + "'ipaservers' hostgroup") 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
