16 lines
262 B
YAML
16 lines
262 B
YAML
|
---
|
||
|
- hosts: "{{ variable_host | default('lab15_standard') }}"
|
||
|
gather_facts: no
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: install python
|
||
|
apt:
|
||
|
pkg:
|
||
|
- python3
|
||
|
- python3-pip
|
||
|
- python-is-python3
|
||
|
- python3-mock
|
||
|
|
||
|
|
||
|
|