2023-12-24 17:58:49 +01:00
|
|
|
---
|
|
|
|
- name: Configure base system.
|
|
|
|
hosts: all
|
2023-12-24 20:52:13 +01:00
|
|
|
gather_facts: no
|
|
|
|
# Debian installs don't have Python by default
|
|
|
|
pre_tasks:
|
|
|
|
- name: Update package database
|
|
|
|
raw: apt update
|
|
|
|
- name: Install Python
|
|
|
|
raw: apt install -y python3
|
2023-12-24 17:58:49 +01:00
|
|
|
roles:
|
|
|
|
- base
|