]> git.phdru.name Git - ansible.git/blob - playbooks/debian-update-all-apt.yml
Refactor debian-update-all-apt.yml: `name`
[ansible.git] / playbooks / debian-update-all-apt.yml
1 - name: Update Debian systems with apt
2   hosts: all
3   become: yes
4   gather_facts: false
5   tasks:
6     - name: Updating host using apt
7       apt:
8         update_cache: yes
9         upgrade: dist
10     - name: Clean unwanted olderstuff
11       apt:
12         autoremove: yes
13         purge: yes