From eb6905bbb45d246f9beddeea69da2236cf67bc68 Mon Sep 17 00:00:00 2001 From: Tomas Krizek Date: Fri, 25 Nov 2016 17:23:29 +0100 Subject: replica-conncheck: improve error message during replicainstall Replica conncheck may fail for other reasons then network misconfiguration. For example, an incorrect admin password might be provided. Since conncheck is ran as a separate script in quiet mode, no insightful error message can be displayed. https://fedorahosted.org/freeipa/ticket/6497 Reviewed-By: Stanislav Laznicka --- ipaserver/install/replication.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py index 3f909bbf0..ddae08ed5 100644 --- a/ipaserver/install/replication.py +++ b/ipaserver/install/replication.py @@ -104,7 +104,7 @@ def replica_conn_check(master_host, host_name, realm, check_ca, if result.returncode != 0: raise ScriptError( "Connection check failed!" - "\nPlease fix your network settings according to error messages above." + "\nSee /var/log/ipareplica-conncheck.log for more information." "\nIf the check results are not valid it can be skipped with --skip-conncheck parameter.") else: print("Connection check OK") -- cgit