From 15f168c10342a48c67e6f37737b60bab05dad04a Mon Sep 17 00:00:00 2001 From: Sudhir Menon Date: Tue, 1 Sep 2020 13:03:01 +0530 Subject: [PATCH] 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 --- ipatests/test_integration/test_ipahealthcheck.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ipatests/test_integration/test_ipahealthcheck.py b/ipatests/test_integration/test_ipahealthcheck.py index 093ff02dd..f0ac5c978 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])