diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-07-11 22:39:48 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:53:03 +0200 |
commit | 42140bf82da25565e7653afbcef2cc8aa7a8538a (patch) | |
tree | 53a8256c2f88d7d54b231b6dca41e9b06b424027 /roles/common/tasks | |
parent | 1422d37b350428b1524016026290ad80724b016d (diff) |
Fix NTP configuration.
We've yet to get authenticated time, though.
Diffstat (limited to 'roles/common/tasks')
-rw-r--r-- | roles/common/tasks/ntp.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/roles/common/tasks/ntp.yml b/roles/common/tasks/ntp.yml index 94d7696..f9a01c8 100644 --- a/roles/common/tasks/ntp.yml +++ b/roles/common/tasks/ntp.yml @@ -6,12 +6,10 @@ dest=/etc/ntp.conf owner=root group=root mode=0644 - register: r notify: - Restart ntp +- meta: flush_handlers + - name: Start ntp service: name=ntp state=started - when: not r.changed - -- meta: flush_handlers |