2023-12-24 16:58:49 +00:00
|
|
|
---
|
|
|
|
- name: Configure base system.
|
|
|
|
hosts: all
|
2023-12-24 19:52:13 +00: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 16:58:49 +00:00
|
|
|
roles:
|
|
|
|
- base
|