From 5f8d90c9685d4523b788ea94df0b385c6e2b436b Mon Sep 17 00:00:00 2001 From: Corrado Mulas Date: Thu, 7 Jul 2022 21:48:57 +0000 Subject: [PATCH] Carica file su 'ansible' --- ansible/apacheinst_playbook.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ansible/apacheinst_playbook.yml diff --git a/ansible/apacheinst_playbook.yml b/ansible/apacheinst_playbook.yml new file mode 100644 index 0000000..d059bc0 --- /dev/null +++ b/ansible/apacheinst_playbook.yml @@ -0,0 +1,4 @@ +- hosts: ubuntu + tasks: + - name: install apache2 + apt: name=apache2 update_cache=yes state=latest