0.1.51-DEV-20221007-1

---------------------
  * ADD:
    - support for centos 9 added
This commit is contained in:
Chris Hammer 2022-10-07 14:20:28 -04:00
parent 8a32e185f3
commit 13bc52079c

View File

@ -6,11 +6,13 @@
when: ansible_distribution == "Debian"
- name: set package and service for centos 8
- name: set package and service for centos 8/9
set_fact:
ntp_pkg : chrony
ntp_service : chronyd
when: ansible_distribution_major_version == "8"
when:
- (ansible_distribution_major_version == "8" or
ansible_distribution_major_version == "9")
- name: install ntp if not present