summaryrefslogtreecommitdiffstats
path: root/roles/ntpserver/tasks/pkgs.yml
blob: 27e5424fa0bba2e23bdc9fcc6ae9aea8dae2d8c2 (plain)
1
2
3
4
5
6
7
- name: Installation du paquet NTP
  yum: name=ntp state=present
  when: ansible_pkg_mgr == "yum"

- name: Installation du paquet Chrony
  dnf: name=chrony state=present
  when: ansible_pkg_mgr == "dnf"