11 lines
160 B
YAML
11 lines
160 B
YAML
- hosts: all
|
|
become_user: root
|
|
|
|
tasks:
|
|
- name: install PIP3
|
|
apt:
|
|
name:
|
|
- python3
|
|
- python3-pip
|
|
state: latest
|