Files
base/tasks/main.yml
T
Ludovic Cartier ca9f50fa1c add custom motd for reboot detection
Co-authored-by: Copilot <copilot@github.com>
2026-05-04 18:59:57 +02:00

35 lines
743 B
YAML

---
- name: base | apt update cache
apt:
update_cache: yes
cache_valid_time: 86400
tags: [ 'packages', 'base' ]
- name: base | install base packages
import_tasks: packages.yml
tags: [ 'packages', 'base' ]
- name: base | configure locales
import_tasks: locales.yml
tags: [ 'locales', 'base' ]
- name: base | install python packages
import_tasks: pip.yml
tags: [ 'pip', 'python' ]
- name: base | install needrestart
import_tasks: needrestart.yml
tags: [ 'needrestart' ]
- name: base | configure SSH
import_tasks: ssh.yml
tags: [ 'ssh' ]
- name: base | set datetime
import_tasks: datetime.yml
tags: [ 'datetime', 'date', 'ntp' ]
- name: base | configure motd
import_tasks: motd.yml
tags: [ 'motd' ]