feat: ping inventory, update and install packages

This commit is contained in:
Aravinth Manivannan 2022-10-24 17:02:59 +05:30
parent 371a88c8de
commit a1cca8b0bf
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1 @@
inventory/

View File

@ -0,0 +1,19 @@
#!/bin/bash
ansible live \
-m ansible.builtin.ping \
-i ./ansible/inventory
ansible live \
-m ansible.builtin.apt \
-f 10 \
-a "update_cache=yes upgrade=safe" \
-i ./ansible/inventory/
ansible live \
-m ansible.builtin.apt \
-f 10 \
-a "name=nginx,git,curl,wget,vim,zip,nginx" \
-i ./ansible/inventory/