]> git.phdru.name Git - ansible.git/blob - playbooks/debian/update-all-apt.yml
Feat(init-system): Install `python-setuptools` for Debian 9
[ansible.git] / playbooks / debian / update-all-apt.yml
1 - name: Update Debian systems with apt
2   hosts: "{{ hosts | default('all') }}"
3   become: yes
4   gather_facts: false
5   tasks:
6     - name: Update system using apt
7       apt:
8         autoclean: yes
9         autoremove: yes
10         install_recommends: no
11         name: "*"
12         purge: yes
13         state: latest
14         update_cache: yes