commit 4fe19fecac8ef7d68f8920b778405a01d38ca9e5 Author: swapnil Date: Thu Mar 31 18:07:56 2022 +0530 Playbook to install prerequisites diff --git a/playbook/prereq.yml b/playbook/prereq.yml new file mode 100644 index 0000000..ed03d81 --- /dev/null +++ b/playbook/prereq.yml @@ -0,0 +1,10 @@ +- hosts: all + become_user: root + + tasks: + - name: install PIP3 + apt: + name: + - python3 + - python3-pip + state: latest