Remove web-rng

This commit is contained in:
Jake Howard
2020-10-09 23:11:53 +01:00
parent f7afaacbdc
commit 5496744428
4 changed files with 0 additions and 44 deletions

View File

@ -25,8 +25,5 @@
- name: Install wallabag
include: wallabag.yml
- name: Install web-rng
include: web-rng.yml
- name: Install whoami
include: whoami.yml

View File

@ -1,23 +0,0 @@
- name: Create web-rng directory
file:
path: /opt/web-rng
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install web-rng compose file
template:
src: files/web-rng/docker-compose.yml
dest: /opt/web-rng/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
- name: restart web-rng
shell:
chdir: /opt/web-rng
cmd: "{{ docker_update_command }}"
when: compose_file.changed