10 lines
203 B
YAML
10 lines
203 B
YAML
|
- name: Prepare
|
||
|
hosts: all
|
||
|
gather_facts: no
|
||
|
|
||
|
tasks:
|
||
|
- name: Update apt cache
|
||
|
raw: apt update
|
||
|
|
||
|
- name: Install python3 package
|
||
|
raw: apt install -y --no-install-recommends python3
|