From ab31688e046fe9e66007b34389dfaf7ed81a4bba Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Tue, 20 Jun 2017 17:40:14 -0500 Subject: Fixes #36: Fix CentOS 6 minimal installs without clock files. --- tasks/main.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tasks/main.yml') diff --git a/tasks/main.yml b/tasks/main.yml index a022447..e88b109 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -10,6 +10,9 @@ - ntp - tzdata +- include: clock-rhel-6.yml + when: ansible_os_family == 'RedHat' and ansible_distribution_version.split('.')[0] == '6' + - name: Set timezone timezone: name: "{{ ntp_timezone }}" -- cgit v1.2.3