summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Geerling <geerlingguy@mac.com>2014-03-16 22:11:31 -0500
committerJeff Geerling <geerlingguy@mac.com>2014-03-16 22:11:31 -0500
commit184fca14494b4710d997e106dfdf9f5e4de9039e (patch)
tree092789554f1c2c6dfa70f78268521863a527f013
parentbb703138cf8c92fd87a96188ba4ecf45f3ede9a5 (diff)
downloadntp-184fca14494b4710d997e106dfdf9f5e4de9039e.tar.gz
ntp-184fca14494b4710d997e106dfdf9f5e4de9039e.tar.bz2
ntp-184fca14494b4710d997e106dfdf9f5e4de9039e.tar.xz
ntp-184fca14494b4710d997e106dfdf9f5e4de9039e.zip
Updated names for OS-specific tasks.
-rw-r--r--tasks/main.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/main.yml b/tasks/main.yml
index 0e39a79..19343f2 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -5,11 +5,11 @@
- name: Set the correct timezone.
file: src=/usr/share/zoneinfo/{{ ntp_timezone }} dest=/etc/localtime state=link force=yes
-- name: Install NTP on RHEL flavors.
+- name: Install NTP (RedHat).
yum: name=ntp state=installed
when: ansible_os_family == 'RedHat'
-- name: Install NTP on Debian flavors.
+- name: Install NTP (Debian).
apt: name=ntp state=installed
when: ansible_os_family == 'Debian'