summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alvarez <pedro.alvarez@codethink.co.uk>2021-08-18 08:43:24 +0200
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2021-08-18 08:43:24 +0200
commit9a6a6aec02337f0813476ae435c5b57af63297c5 (patch)
tree9c7fcde8b7ec8defda5ff1f82f17fcaee0926a4f
parent76476321de21745f59d405573d74c24bc864fa7a (diff)
downloadinfrastructure-9a6a6aec02337f0813476ae435c5b57af63297c5.tar.gz
baserock_webserver/image-config.yml: remove instance specific things
-rw-r--r--baserock_webserver/image-config.yml30
1 files changed, 0 insertions, 30 deletions
diff --git a/baserock_webserver/image-config.yml b/baserock_webserver/image-config.yml
index 0bb34865..e05c6153 100644
--- a/baserock_webserver/image-config.yml
+++ b/baserock_webserver/image-config.yml
@@ -13,36 +13,6 @@
- libnginx-mod-http-fancyindex
update_cache: yes
- - name: Create the nginx configuration files
- template:
- src: files/{{ item }}
- dest: /etc/nginx/sites-available/{{ item }}
- become: yes
- notify:
- - restart nginx
- with_items:
- - download-baserock-org.conf
- - irclogs-baserock-org.conf
-
- - name: Enable nginx sites
- file:
- src: ../sites-available/{{ item }}
- dest: /etc/nginx/sites-enabled/{{ item }}
- state: link
- become: yes
- notify:
- - restart nginx
- with_items:
- - download-baserock-org.conf
- - irclogs-baserock-org.conf
-
- name: install lvm2 tools
apt:
name: lvm2
-
- handlers:
- - name: restart nginx
- service:
- name: nginx
- state: restarted
- become: yes