summaryrefslogtreecommitdiffstats
path: root/playbooks/update.yml
blob: 7298766312dc397355f8f404a22b17b61635bd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- hosts:
    - update
  remote_user: root
  tasks:
    - name: Mise à jour système avec yum
      yum: name=* state=latest
      when: ansible_pkg_mgr == "yum"

    - name: Mise à jour système avec dnf
      dnf: name=* state=latest
      when: ansible_pkg_mgr == "dnf"