summaryrefslogtreecommitdiffstats
path: root/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/main.yml')
-rw-r--r--tasks/main.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/tasks/main.yml b/tasks/main.yml
new file mode 100644
index 0000000..7ed08ed
--- /dev/null
+++ b/tasks/main.yml
@@ -0,0 +1,10 @@
+---
+# Date and timezone (NTP).
+- name: Set the correct timezone.
+ file: src=/usr/share/zoneinfo/{{ timezone }} dest=/etc/localtime state=link force=yes
+
+- name: Install NTP.
+ yum: name=ntp state=installed
+
+- name: Ensure NTP is running.
+ service: name=ntpd state=started enabled=yes