]> git.phdru.name Git - ansible.git/blob - playbooks/debian/update-all-apt.yml
Update(logcheck): Update `local-spamassassin`
[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         cache_valid_time: 3600
11         install_recommends: no
12         name: "*"
13         state: latest
14         update_cache: yes