From 9c10d7ee2c7a7f1f2c2643e19e3a3b8cf8a211be Mon Sep 17 00:00:00 2001 From: Mohammad Rizwan Date: Sep 19 2023 11:48:07 +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