1
0
Fork 0
freesewing/ansible/playbooks/linux-install-updates.yaml

13 lines
285 B
YAML
Raw Normal View History

# An Ansible playbook to install the latest updates on a (debian) Linux system
2021-10-17 11:45:41 +02:00
---
- hosts: '!localhost'
gather_facts: false
become: true
tasks:
- name: Update all packages to their latest version
apt:
name: '*'
state: latest
update_cache: yes