1
0
Fork 0
freesewing/ansible/playbooks/install_updates.yaml
2021-10-17 11:45:41 +02:00

11 lines
206 B
YAML

---
- hosts: '!localhost'
gather_facts: false
become: true
tasks:
- name: Update all packages to their latest version
apt:
name: '*'
state: latest
update_cache: yes