summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Babinsky <mbabinsk@redhat.com>2017-02-17 13:48:46 +0100
committerMartin Basti <mbasti@redhat.com>2017-03-01 15:55:45 +0100
commitef37c42ab9d3530dc78fa4b754cd11c585b69d77 (patch)
tree11b3afef0ee627579e488bede418e93a21f43577
parentc17215ea3db58c7a5fe6e30b6b38f4f3012e25d2 (diff)
downloadfreeipa-ef37c42ab9d3530dc78fa4b754cd11c585b69d77.tar.gz
freeipa-ef37c42ab9d3530dc78fa4b754cd11c585b69d77.tar.xz
freeipa-ef37c42ab9d3530dc78fa4b754cd11c585b69d77.zip
print the installation info only in standalone mode
There is no point in emitting this message during server/replica install. https://fedorahosted.org/freeipa/ticket/6630 Reviewed-By: Martin Basti <mbasti@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com>
-rwxr-xr-xinstall/tools/ipa-adtrust-install2
-rw-r--r--ipaserver/install/adtrust.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/install/tools/ipa-adtrust-install b/install/tools/ipa-adtrust-install
index 443c3c43d..1484598ad 100755
--- a/install/tools/ipa-adtrust-install
+++ b/install/tools/ipa-adtrust-install
@@ -208,7 +208,7 @@ def main():
"Unrecognized error during check of admin rights: %s" % e)
adtrust.install_check(True, options, api)
- adtrust.install(options, fstore, api)
+ adtrust.install(True, options, fstore, api)
print("""
=============================================================================
diff --git a/ipaserver/install/adtrust.py b/ipaserver/install/adtrust.py
index 4694a25ca..2eddf453a 100644
--- a/ipaserver/install/adtrust.py
+++ b/ipaserver/install/adtrust.py
@@ -404,8 +404,8 @@ def install_check(standalone, options, api):
retrieve_and_ask_about_sids(api, options)
-def install(options, fstore, api):
- if not options.unattended:
+def install(standalone, options, fstore, api):
+ if not options.unattended and standalone:
print("")
print("The following operations may take some minutes to complete.")
print("Please wait until the prompt is returned.")