Remove scrutiny role

SMART checks are handeld by PVE / something else in future
This commit is contained in:
Jake Howard 2021-01-09 18:30:28 +00:00
parent 0506a78d02
commit 1b72afdd29
Signed by: jake
GPG Key ID: 57AFB45680EDD477
3 changed files with 0 additions and 49 deletions

View File

@ -1,28 +0,0 @@
version: "2.3"
services:
web:
image: linuxserver/scrutiny:latest
ports:
- "{{ wireguard.clients[ansible_fqdn].ip }}:7278:8080"
volumes:
- "{{ app_data_dir }}/scrutiny/:/config"
environment:
- SCRUTINY_WEB=true
- PUID={{ docker_user.id }}
- PGID={{ docker_user.id }}
restart: unless-stopped
collector:
image: linuxserver/scrutiny:latest
privileged: true
volumes:
- /dev/disk:/dev/disk
- /run/udev:/run/udev:ro
- "{{ app_data_dir }}/scrutiny/:/config"
environment:
- SCRUTINY_COLLECTOR=true
- SCRUTINY_API_ENDPOINT=http://web:8080
- PUID={{ docker_user.id }}
- PGID={{ docker_user.id }}
restart: unless-stopped

View File

@ -1,4 +0,0 @@
- name: restart scrutiny
shell:
chdir: /opt/scrutiny
cmd: "{{ docker_update_command }}"

View File

@ -1,17 +0,0 @@
- name: Create install directory
file:
path: /opt/scrutiny
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install compose file
template:
src: files/docker-compose.yml
dest: /opt/scrutiny/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
notify: restart scrutiny
become: true