Fix format string passed to pytest-multihost

Integration trust test suit failed with error trying to
start chronyd because of bad formating of passed string

See: https://pagure.io/python-pytest-multihost/issue/15
Resolves: https://pagure.io/freeipa/issue/7487
Reviewed-By: Christian Heimes <cheimes@redhat.com>
This commit is contained in:
Tibor Dudlák
2018-04-17 14:13:10 +02:00
committed by Christian Heimes
parent 64ffd117d2
commit 692a9931da

View File

@@ -663,7 +663,7 @@ def sync_time(host, server):
host.run_command(['systemctl', 'stop', 'chronyd'])
host.run_command(['chronyd', '-q',
'"server {srv} iburst"'.format(srv=server.hostname)])
"server {srv} iburst".format(srv=server.hostname)])
def connect_replica(master, replica, domain_level=None):