base/tasks/main.yml
2024-12-16 18:09:18 +01:00

18 lines
331 B
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: base | apt update cache
apt:
update_cache: yes
cache_valid_time: 86400 #One day
- name: base | install base packages
include: packages.yml
- name: base | configure locales
include: locales.yml
- name: base | install pip3 packages
include: pip.yml
- name: base | set datetime
include: date.yml