ansible/playbooks/update-apt.yaml

10 lines
163 B
YAML
Raw Normal View History

2024-09-19 16:12:54 +02:00
---
- hosts: all
2024-09-19 16:09:47 +02:00
become: true
2024-09-19 16:12:54 +02:00
tasks:
- name: update apt packages
apt:
upgrade: yes
update_cache: yes
cache_valid_time: 86400