summaryrefslogtreecommitdiff
path: root/baserock_webserver/image-config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'baserock_webserver/image-config.yml')
-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