From 99facb753a634f63df5250a8decbf53d13d955bb Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Wed, 5 Feb 2014 09:07:45 +0100 Subject: ipatests: Make sure we re-kinit as admin before adding the disabledipauser When we add the disabledipauser during the setup class part of the BaseTestLegacyClient, we need to make sure that we re-kinit admin since we do ntpsync with the AD just before that, which can render the previous ticket invalid. Reviewed-By: Nathaniel McCallum --- ipatests/test_integration/test_legacy_clients.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ipatests/test_integration/test_legacy_clients.py b/ipatests/test_integration/test_legacy_clients.py index b4fd13175..4eac83e8d 100644 --- a/ipatests/test_integration/test_legacy_clients.py +++ b/ipatests/test_integration/test_legacy_clients.py @@ -221,6 +221,8 @@ class BaseTestLegacyClient(object): def install(cls): super(BaseTestLegacyClient, cls).install() + tasks.kinit_admin(cls.master) + password_confirmation = ( cls.master.config.admin_password + '\n' + -- cgit