summaryrefslogtreecommitdiffstats
path: root/tasks/main.yml
diff options
context:
space:
mode:
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