12 lines
No EOL
363 B
YAML
12 lines
No EOL
363 B
YAML
- hosts: all
|
|
become: true
|
|
tasks:
|
|
- name: Update apt cache (Debian/Ubuntu)
|
|
apt:
|
|
update_cache: yes
|
|
when: ansible_distribution == "Ubuntu" or ansible_distribution == "Debian"
|
|
|
|
- name: Upgrade all packages (Debian/Ubuntu)
|
|
apt:
|
|
upgrade: dist
|
|
when: ansible_distribution == "Ubuntu" or ansible_distribution == "Debian" |