summaryrefslogtreecommitdiffstats
path: root/tasks/main.yml
diff options
context:
space:
mode:
authorJeff Geerling <geerlingguy@mac.com>2017-05-09 08:13:31 -0500
committerGitHub <noreply@github.com>2017-05-09 08:13:31 -0500
commitfbd7badf560bb0a18736acaa3ec6416863c0a615 (patch)
tree60bb2a5b4185a74aaecbfe929207f86a5facfffc /tasks/main.yml
parentd7eba652db7cba3638400070dea90992ec92fdeb (diff)
parent8d6b43ee781b412c6e28b49dfcaa220f2d041743 (diff)
downloadntp-fbd7badf560bb0a18736acaa3ec6416863c0a615.tar.gz
ntp-fbd7badf560bb0a18736acaa3ec6416863c0a615.tar.bz2
ntp-fbd7badf560bb0a18736acaa3ec6416863c0a615.tar.xz
ntp-fbd7badf560bb0a18736acaa3ec6416863c0a615.zip
Merge pull request #31 from opsta/syntax
Improve syntax consistency
Diffstat (limited to 'tasks/main.yml')
-rw-r--r--tasks/main.yml8
1 files changed, 6 insertions, 2 deletions
diff --git a/tasks/main.yml b/tasks/main.yml
index c5a4d7f..afe3731 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -18,7 +18,9 @@
when: ansible_os_family == 'Debian'
- name: Install NTP.
- package: name=ntp state=present
+ package:
+ name: ntp
+ state: present
- name: Ensure NTP is running and enabled as configured.
service:
@@ -35,6 +37,8 @@
when: not ntp_enabled
- name: Generate ntp.conf file
- template: src=ntp.conf.j2 dest=/etc/ntp.conf
+ template:
+ src: ntp.conf.j2
+ dest: /etc/ntp.conf
notify: restart ntp
when: ntp_manage_config