mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Workaround for ticket 5627
https://fedorahosted.org/freeipa/ticket/5723 Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
parent
b5807fd9b6
commit
578cff9567
@ -19,6 +19,11 @@ class ReplicaPromotionBase(IntegrationTest):
|
|||||||
result = self.master.run_command(
|
result = self.master.run_command(
|
||||||
["ipa", "host-del", "--updatedns", host.hostname],
|
["ipa", "host-del", "--updatedns", host.hostname],
|
||||||
raiseonerr=False)
|
raiseonerr=False)
|
||||||
|
# Workaround for 5627
|
||||||
|
if "host not found" in result.stderr_text:
|
||||||
|
self.master.run_command(["ipa",
|
||||||
|
"host-del",
|
||||||
|
host.hostname], raiseonerr=False)
|
||||||
|
|
||||||
def test_kra_install_master(self):
|
def test_kra_install_master(self):
|
||||||
result1 = tasks.install_kra(self.master,
|
result1 = tasks.install_kra(self.master,
|
||||||
|
Loading…
Reference in New Issue
Block a user