mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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>
This commit is contained in:
parent
c17215ea3d
commit
ef37c42ab9
@ -208,7 +208,7 @@ def main():
|
|||||||
"Unrecognized error during check of admin rights: %s" % e)
|
"Unrecognized error during check of admin rights: %s" % e)
|
||||||
|
|
||||||
adtrust.install_check(True, options, api)
|
adtrust.install_check(True, options, api)
|
||||||
adtrust.install(options, fstore, api)
|
adtrust.install(True, options, fstore, api)
|
||||||
|
|
||||||
print("""
|
print("""
|
||||||
=============================================================================
|
=============================================================================
|
||||||
|
@ -404,8 +404,8 @@ def install_check(standalone, options, api):
|
|||||||
retrieve_and_ask_about_sids(api, options)
|
retrieve_and_ask_about_sids(api, options)
|
||||||
|
|
||||||
|
|
||||||
def install(options, fstore, api):
|
def install(standalone, options, fstore, api):
|
||||||
if not options.unattended:
|
if not options.unattended and standalone:
|
||||||
print("")
|
print("")
|
||||||
print("The following operations may take some minutes to complete.")
|
print("The following operations may take some minutes to complete.")
|
||||||
print("Please wait until the prompt is returned.")
|
print("Please wait until the prompt is returned.")
|
||||||
|
Loading…
Reference in New Issue
Block a user