From 4fc28edbe6c9fee1e16d4057f4d83b7910264fdd Mon Sep 17 00:00:00 2001 From: Mohammad Rizwan Date: Sep 19 2023 08:28:43 +0000 Subject: ipatests: restart ipa services after moving date When system date is moved into future, it have unprecedented behavior i.e CA becomes irresponsive or unexpected certificcate state. Hence restart the ipa service after moving the date to gracefully serve the request. Fixes: https://pagure.io/freeipa/issue/9379 Signed-off-by: Mohammad Rizwan Reviewed-By: Florence Blanc-Renaud --- diff --git a/ipatests/test_integration/test_ipa_cert_fix.py b/ipatests/test_integration/test_ipa_cert_fix.py index 77076e7..ec9456e 100644 --- a/ipatests/test_integration/test_ipa_cert_fix.py +++ b/ipatests/test_integration/test_ipa_cert_fix.py @@ -408,6 +408,9 @@ class TestCertFixReplica(IntegrationTest): # move system date to expire certs for host in self.master, self.replicas[0]: tasks.move_date(host, 'stop', '+3years+1days') + host.run_command( + ['ipactl', 'restart', '--ignore-service-failures'] + ) yield