diff options
author | Jeff Geerling <geerlingguy@mac.com> | 2017-06-11 14:46:31 -0500 |
---|---|---|
committer | Jeff Geerling <geerlingguy@mac.com> | 2017-06-11 14:46:31 -0500 |
commit | a9767d7c6639eeea8b45564f7ddb5018680aea3d (patch) | |
tree | baa33b7b10d47e55623db5a482279cc09f4779a6 /tasks/main.yml | |
parent | fbd7badf560bb0a18736acaa3ec6416863c0a615 (diff) | |
parent | 86b8f5a1028386665c2c43bff2962b8ea476be78 (diff) | |
download | ntp-a9767d7c6639eeea8b45564f7ddb5018680aea3d.tar.gz ntp-a9767d7c6639eeea8b45564f7ddb5018680aea3d.tar.bz2 ntp-a9767d7c6639eeea8b45564f7ddb5018680aea3d.tar.xz ntp-a9767d7c6639eeea8b45564f7ddb5018680aea3d.zip |
Merge branch 'opsta-ansible22'
Diffstat (limited to 'tasks/main.yml')
-rw-r--r-- | tasks/main.yml | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/tasks/main.yml b/tasks/main.yml index afe3731..a022447 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -2,25 +2,17 @@ - name: Include OS-specific variables. include_vars: "{{ ansible_os_family }}.yml" -- name: Set the correct timezone. - file: - src: "/usr/share/zoneinfo/{{ ntp_timezone }}" - dest: /etc/localtime - state: link - force: yes - -# Debian family OSes also have an /etc/timezone file. -- name: Set timezone in /etc/timezone file. - template: - src: timezone.j2 - dest: /etc/timezone - force: yes - when: ansible_os_family == 'Debian' - -- name: Install NTP. +- name: Ensure NTP-related packages are installed. package: - name: ntp + name: "{{ item }}" state: present + with_items: + - ntp + - tzdata + +- name: Set timezone + timezone: + name: "{{ ntp_timezone }}" - name: Ensure NTP is running and enabled as configured. service: |