From ab3e9a5d6ec89a782c4872d2d004ee1eb694f827 Mon Sep 17 00:00:00 2001
From: Debora Benedetto <debora.benedetto@hpe.com>
Date: Thu, 5 May 2022 12:23:57 +0200
Subject: [PATCH] Remove ansible file from the openstack output generated

---
 .../nginx_openstack/ansible/nginx.play        | 45 -------------------
 1 file changed, 45 deletions(-)
 delete mode 100644 output_files_generated/nginx_openstack/ansible/nginx.play

diff --git a/output_files_generated/nginx_openstack/ansible/nginx.play b/output_files_generated/nginx_openstack/ansible/nginx.play
deleted file mode 100644
index c8790e1..0000000
--- a/output_files_generated/nginx_openstack/ansible/nginx.play
+++ /dev/null
@@ -1,45 +0,0 @@
----
-- hosts: 16.0.0.1
-  gather_facts: no
-  become: yes
-  vars:
-    ansible_ssh_private_key_file: "/home/user1/.ssh/openstack.key"
-    ansible_ssh_user: "ubuntu"
-  tasks:
-    - name: Update repositories
-      apt:
-        update_cache: yes
-
-    - name: Install nginx
-      package:
-        name: nginx
-
-    - name: Start nginx
-      service:
-        name: nginx
-        enabled: yes
-        state: started
-
-    - name: Set attributes
-      set_stats:
-        data:
-          site_config_dir: /etc/nginx/conf.d
-
-    - name: Install sample site
-      copy:
-        dest: ""
-        content: |
-          <!doctype html>
-          <html lang="en">
-          <head>
-            <title>Hello World!</title>
-          </head>
-          <body>
-            <h1>Sample web page</h1>
-            <p>With little content ;)</p>
-          </body>
-          </html>
-      with_items:
-        - /var/www/html/index.html
-        - /usr/share/nginx/html/index.html
-
-- 
GitLab