summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2015-09-02 12:00:51 +0200
committerMartin Basti <mbasti@redhat.com>2015-09-11 16:05:56 +0200
commit7f0076b9a5f2aced1f27b976217309be2eec0b1c (patch)
tree78a4299d0973f8a9d5f7f9f21a94190214c3ef31
parentf8f5bd644aee5c54acc857061868e659ae449e48 (diff)
downloadfreeipa-7f0076b9a5f2aced1f27b976217309be2eec0b1c.tar.gz
freeipa-7f0076b9a5f2aced1f27b976217309be2eec0b1c.tar.xz
freeipa-7f0076b9a5f2aced1f27b976217309be2eec0b1c.zip
Server Install: print message that client is being installed
IPA client is installed on server side during "Restarting web server" step, which lasts too long. This commit explicitly print message that IPA client is being installed. Reviewed-By: Simo Sorce <ssorce@redhat.com>
-rw-r--r--ipaserver/install/server/install.py1
-rw-r--r--ipaserver/install/server/replicainstall.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/ipaserver/install/server/install.py b/ipaserver/install/server/install.py
index f9baa0757..943076c29 100644
--- a/ipaserver/install/server/install.py
+++ b/ipaserver/install/server/install.py
@@ -878,6 +878,7 @@ def install(installer):
ds.change_admin_password(admin_password)
# Call client install script
+ service.print_msg("Configuring client side components")
try:
args = [paths.IPA_CLIENT_INSTALL, "--on-master", "--unattended",
"--domain", domain_name, "--server", host_name,
diff --git a/ipaserver/install/server/replicainstall.py b/ipaserver/install/server/replicainstall.py
index c36548e7a..adff9284e 100644
--- a/ipaserver/install/server/replicainstall.py
+++ b/ipaserver/install/server/replicainstall.py
@@ -624,6 +624,7 @@ def install(installer):
http.restart()
# Call client install script
+ service.print_msg("Configuring client side components")
try:
args = [paths.IPA_CLIENT_INSTALL, "--on-master", "--unattended",
"--domain", config.domain_name, "--server", config.host_name,