More cleanup.

This commit is contained in:
Laur Ivan 2022-12-11 22:39:17 +01:00
parent e49c4f80f3
commit 3b13618eff
10 changed files with 30 additions and 28 deletions

View File

@ -34,9 +34,9 @@ radarr_host_port: 7878
radarr_config_volume: '{{ arrs_configuration_volume }}/radarr' radarr_config_volume: '{{ arrs_configuration_volume }}/radarr'
radarr_upload_volume: '/mnt/videos/Movies' radarr_upload_volume: '/mnt/videos/Movies'
radarr_library_volumes: radarr_library_volumes:
- {path: '/mnt/video/Gold', alias: 'gold' } - {path: '/mnt/video/Gold', alias: 'gold'}
- {path: '/mnt/video/Current', alias: 'current' } - {path: '/mnt/video/Current', alias: 'current'}
- {path: '/mnt/video/Temporary', alias: 'temporary' } - {path: '/mnt/video/Temporary', alias: 'temporary'}
# Sonarr # Sonarr
# #
@ -46,9 +46,9 @@ sonarr_host_port: 8989
sonarr_config_volume: '{{ arrs_configuration_volume }}/sonarr' sonarr_config_volume: '{{ arrs_configuration_volume }}/sonarr'
sonarr_upload_volume: '/mnt/videos/Series' sonarr_upload_volume: '/mnt/videos/Series'
sonarr_library_volumes: sonarr_library_volumes:
- {path: '/mnt/tv/Series', alias: 'series' } - {path: '/mnt/tv/Series', alias: 'series'}
- {path: '/mnt/tv/Animation', alias: 'animation' } - {path: '/mnt/tv/Animation', alias: 'animation'}
- {path: '/mnt/tv/SciFi', alias: 'scifi' } - {path: '/mnt/tv/SciFi', alias: 'scifi'}
# Lidarr # Lidarr
lidarr_image_version: 'latest' lidarr_image_version: 'latest'
@ -57,9 +57,9 @@ lidarr_host_port: 8686
lidarr_config_volume: '{{ arrs_configuration_volume }}/lidarr' lidarr_config_volume: '{{ arrs_configuration_volume }}/lidarr'
lidarr_upload_volume: '/mnt/music/Reference' lidarr_upload_volume: '/mnt/music/Reference'
lidarr_library_volumes: lidarr_library_volumes:
- {path: '/mnt/music/Sonos', alias: 'sonos' } - {path: '/mnt/music/Sonos', alias: 'sonos'}
- {path: '/mnt/music/Audiophile', alias: 'audiophile' } - {path: '/mnt/music/Audiophile', alias: 'audiophile'}
- {path: '/mnt/music/Raw', alias: 'raw' } - {path: '/mnt/music/Raw', alias: 'raw'}
# Jakett # Jakett
jackett_image_version: 'latest' jackett_image_version: 'latest'

View File

@ -1,3 +1,4 @@
---
galaxy_info: galaxy_info:
author: Laur Ivan author: Laur Ivan
namespace: laurivan namespace: laurivan

View File

@ -14,7 +14,8 @@
when: not docker_sock_stat.stat.exists when: not docker_sock_stat.stat.exists
- name: Move docker.sock from tmp - name: Move docker.sock from tmp
ansible.builtin.raw: mount --move /tmp/docker_mounted.sock /var/run/docker.sock ansible.builtin.raw: >
mount --move /tmp/docker_mounted.sock /var/run/docker.sock
become: true become: true
changed_when: false changed_when: false
when: not docker_sock_stat.stat.exists when: not docker_sock_stat.stat.exists