Playbook to install prerequisites

This commit is contained in:
swapnil 2022-03-31 18:07:56 +05:30
commit 4fe19fecac
1 changed files with 10 additions and 0 deletions

10
playbook/prereq.yml Normal file
View File

@ -0,0 +1,10 @@
- hosts: all
become_user: root
tasks:
- name: install PIP3
apt:
name:
- python3
- python3-pip
state: latest