From 9d01875d12c20855d4be1351717ee4105e34e5ac Mon Sep 17 00:00:00 2001 From: Stanislav Levin Date: May 13 2020 09:07:43 +0000 Subject: Azure: Allow chronyd to sync time Though time namespace support was added in Linux kernel 5.6, it is not landed on Azure VM (Ubuntu) yet. The syncing time stuff is required by IPA NTP tests. it's acceptable for testing 1 IPA environment on 1 Azure VM for such tests. Fixes: https://pagure.io/freeipa/issue/8316 Signed-off-by: Stanislav Levin Reviewed-By: Alexander Bokovoy --- diff --git a/ipatests/azure/scripts/setup_containers.py b/ipatests/azure/scripts/setup_containers.py index dbf2ea6..6883a19 100644 --- a/ipatests/azure/scripts/setup_containers.py +++ b/ipatests/azure/scripts/setup_containers.py @@ -195,7 +195,7 @@ class Container: """ Set services known to not work in containers to be ignored """ - for service in ('chronyd', 'nis-domainname'): + for service in ['nis-domainname',]: self.ignore_service_in_container(service) self.execute_all(args=["systemctl", "daemon-reload"])