ansible_public/playbooks/installers/install_python.yaml

16 lines
262 B
YAML
Raw Normal View History

2022-06-14 18:53:16 +02:00
---
- 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