mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
install: replica: Show message about key synchronization
https://pagure.io/freeipa/issue/6940 Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
parent
0f0423cf53
commit
d6787eea48
@ -1,5 +1,7 @@
|
|||||||
# Copyright (C) 2015 FreeIPa Project Contributors, see 'COPYING' for license.
|
# Copyright (C) 2015 FreeIPa Project Contributors, see 'COPYING' for license.
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
from ipaserver.secrets.kem import IPAKEMKeys, KEMLdap
|
from ipaserver.secrets.kem import IPAKEMKeys, KEMLdap
|
||||||
@ -123,6 +125,10 @@ class CustodiaInstance(SimpleServiceInstance):
|
|||||||
deadline = int(time.time()) + timeout
|
deadline = int(time.time()) + timeout
|
||||||
logger.info("Waiting up to %s seconds to see our keys "
|
logger.info("Waiting up to %s seconds to see our keys "
|
||||||
"appear on host: %s", timeout, host)
|
"appear on host: %s", timeout, host)
|
||||||
|
# FIXME: Change once there's better way to show this mesage
|
||||||
|
# in installer output
|
||||||
|
print("Waiting for keys to appear on host: {}, "
|
||||||
|
"please wait until this has completed.".format(host))
|
||||||
|
|
||||||
konn = KEMLdap(ldap_uri)
|
konn = KEMLdap(ldap_uri)
|
||||||
saved_e = None
|
saved_e = None
|
||||||
|
Loading…
Reference in New Issue
Block a user