19 lines
488 B
YAML
19 lines
488 B
YAML
---
|
||
- name: Upgrade all packages with ‹apt›
|
||
ansible.builtin.apt:
|
||
name: "*"
|
||
state: latest
|
||
update_cache: true
|
||
when: ansible_distribution == "Ubuntu"
|
||
|
||
- name: Upgrade all packages with ‹dnf›
|
||
ansible.builtin.dnf:
|
||
name: "*"
|
||
state: latest
|
||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora" ]
|
||
|
||
- name: Upgrade all packages with ‹zypper›
|
||
community.general.zypper:
|
||
name: "*"
|
||
state: latest
|
||
when: "'openSUSE' in ansible_distribution"
|