infra/playbooks/00-prepare.yaml

13 lines
239 B
YAML
Raw Normal View History

2024-06-11 21:23:41 +00:00
---
- name: General system preparation
hosts: all
tasks:
- name: Apt update
ansible.builtin.apt:
update_cache: true
- name: Apt cleanup
ansible.builtin.apt:
autoremove: true
autoclean: true