c8a18bb46d
- Related: RHEL-59788 Rebase Samba to the latest 4.21.x release - Fixes: RHEL-61642 Uninstall ACME separately during PKI uninstallation - Fixes: RHEL-56963 SSSD offline causing test-adtrust-install failure - Fixes: RHEL-56473 Include latest fixes in python3-ipatests packages - Fixes: RHEL-48104 Default hbac rules are duplicated on remote server post ipa-migrate in prod-mode - Fixes: RHEL-45330 [RFE] add a tool to quickly detect and fix issues with IPA ID ranges - Fixes: RHEL-40376 SID generation task is failing when SELinux is in Enforcing mode - Fixes: RHEL-4915 Last expired OTP token would be c Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From ae4c2ad6cd966d48c063814f494dcc16cf0ccd4c Mon Sep 17 00:00:00 2001
|
|
From: Sudhir Menon <sumenon@redhat.com>
|
|
Date: Tue, 24 Sep 2024 13:46:48 +0530
|
|
Subject: [PATCH] ipatests: Fixes for ipa-idrange-fix testsuite
|
|
|
|
This patch adds the line tasks.install_master(cls.master).
|
|
The kinit admin command fails with the below error as the
|
|
IPA is not configured on the test system
|
|
|
|
'ipa: ERROR: stderr: kinit: Configuration file does not specify default
|
|
realm when parsing name admin'
|
|
|
|
Signed-off-by: Sudhir Menon <sumenon@redhat.com>
|
|
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
|
|
---
|
|
ipatests/test_integration/test_ipa_idrange_fix.py | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/ipatests/test_integration/test_ipa_idrange_fix.py b/ipatests/test_integration/test_ipa_idrange_fix.py
|
|
index ff8fbdac9d028d26fc55f5e357f89af879a61723..0c915bd0931ed11a3aa86c533ee8748aa8a7ec07 100644
|
|
--- a/ipatests/test_integration/test_ipa_idrange_fix.py
|
|
+++ b/ipatests/test_integration/test_ipa_idrange_fix.py
|
|
@@ -17,6 +17,9 @@ logger = logging.getLogger(__name__)
|
|
|
|
|
|
class TestIpaIdrangeFix(IntegrationTest):
|
|
+
|
|
+ topology = 'line'
|
|
+
|
|
@classmethod
|
|
def install(cls, mh):
|
|
super(TestIpaIdrangeFix, cls).install(mh)
|
|
--
|
|
2.46.2
|
|
|