summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Krizek <tkrizek@redhat.com>2016-11-25 17:23:29 +0100
committerMartin Basti <mbasti@redhat.com>2016-12-06 13:05:29 +0100
commiteb6905bbb45d246f9beddeea69da2236cf67bc68 (patch)
tree20da979bc7d0cd142d6135d2bd5a18afe2ecc72f
parenta44974cdf8a6c53f2e86dac92aa579ba45f666e4 (diff)
downloadfreeipa-eb6905bbb45d246f9beddeea69da2236cf67bc68.tar.gz
freeipa-eb6905bbb45d246f9beddeea69da2236cf67bc68.tar.xz
freeipa-eb6905bbb45d246f9beddeea69da2236cf67bc68.zip
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 <slaznick@redhat.com>
-rw-r--r--ipaserver/install/replication.py2
1 files changed, 1 insertions, 1 deletions
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")