diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | meta/main.yml | 2 | ||||
-rw-r--r-- | tasks/main.yml | 26 |
3 files changed, 11 insertions, 19 deletions
diff --git a/.travis.yml b/.travis.yml index 6eb20a4..563f83c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ env: - distro: ubuntu1404 - distro: ubuntu1204 - distro: fedora24 - # - distro: debian8 + - distro: debian8 script: # Download test shim. diff --git a/meta/main.yml b/meta/main.yml index 4cfa5a2..9e6dd69 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -6,7 +6,7 @@ galaxy_info: description: NTP installation and configuration for Linux. company: "Midwestern Mac, LLC" license: "license (BSD, MIT)" - min_ansible_version: 1.8 + min_ansible_version: 2.2 platforms: - name: EL versions: 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: |