summaryrefslogtreecommitdiffstats
path: root/roles/dnsserver/tasks/pkgs.yml
blob: 256b8d7a7555f399e0788dbeb8e267f86ba79f3d (plain)
1
2
3
4
5
6
7
- name: Installation de bind
  yum: name=bind state=present
  when: ansible_pkg_mgr == "yum"

- name: Installation de bind
  dnf: name=bind state=present
  when: ansible_pkg_mgr == "dnf"