From 4b0c45189945f190d090aff203852ad6f2ce085c Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Thu, 9 Jun 2016 19:11:18 +0000 Subject: [PATCH] This play breaks older playbooks and needs to check whether chronyd is installed Signed-off-by: Patrick Uiterwijk --- tasks/cloud_setup_basic.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/cloud_setup_basic.yml b/tasks/cloud_setup_basic.yml index ded4e90d15..f03241b19f 100644 --- a/tasks/cloud_setup_basic.yml +++ b/tasks/cloud_setup_basic.yml @@ -26,6 +26,7 @@ - name: disable chronyd on el7 service: name=chronyd state=stopped enabled=false when: ansible_cmdline.ostree is not defined and ansible_distribution_major_version|int == 7 + ignore_errors: yes - name: enable the service service: name=ntpd state=running enabled=true