From 0a7fc535345892ee93aa736dcd94a4f23c544f61 Mon Sep 17 00:00:00 2001 From: Sudhir Menon Date: Sep 04 2020 06:41:39 +0000 Subject: ipatests: Install healthcheck pkg for TestIpaHealthCheckWithADtrust Tests for TestIpaHealthCheckWithADtrust are failing since package is not installed, this patch installs healthcheck pkg on the IPA Master. Patch to install healthcheck package for TestIpaHealthCheckWithExternalCA Signed-off-by: Sudhir Menon Reviewed-By: Florence Blanc-Renaud --- diff --git a/ipatests/test_integration/test_ipahealthcheck.py b/ipatests/test_integration/test_ipahealthcheck.py index 093ff02..f0ac5c9 100644 --- a/ipatests/test_integration/test_ipahealthcheck.py +++ b/ipatests/test_integration/test_ipahealthcheck.py @@ -975,6 +975,7 @@ class TestIpaHealthCheckWithADtrust(IntegrationTest): tasks.install_adtrust(cls.master) tasks.configure_dns_for_trust(cls.master, cls.ad) tasks.establish_trust_with_ad(cls.master, cls.ad.domain.name) + tasks.install_packages(cls.master, HEALTHCHECK_PKG) def test_ipahealthcheck_trust_domainscheck(self): """ @@ -1636,7 +1637,7 @@ class TestIpaHealthCheckWithExternalCA(IntegrationTest): cls.master, ipa_ca_fname, root_ca_fname ) tasks.kinit_admin(cls.master) - + tasks.install_packages(cls.master, HEALTHCHECK_PKG) tasks.install_packages(cls.replicas[0], HEALTHCHECK_PKG) tasks.install_replica(cls.master, cls.replicas[0])