12 lines
206 B
YAML
12 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
|
||
|
|