summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tasks/main.yml11
1 files changed, 7 insertions, 4 deletions
diff --git a/tasks/main.yml b/tasks/main.yml
index e88b109..afbf1c2 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -4,11 +4,14 @@
- name: Ensure NTP-related packages are installed.
package:
- name: "{{ item }}"
+ name: ntp
state: present
- with_items:
- - ntp
- - tzdata
+
+- name: Ensure tzdata package is installed (Linux).
+ package:
+ name: tzdata
+ state: present
+ when: ansible_system == "Linux"
- include: clock-rhel-6.yml
when: ansible_os_family == 'RedHat' and ansible_distribution_version.split('.')[0] == '6'