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
|
||
|
|