2 Commits
1.0.4 ... 1.0.6

Author SHA1 Message Date
97752ebf58 Fix radarr name in docker-compose. 2022-09-29 22:26:08 +02:00
482e48c26e Fix config permissions. 2022-09-29 22:19:52 +02:00
2 changed files with 14 additions and 2 deletions

View File

@@ -7,13 +7,25 @@
owner: "{{ ansible_effective_user_id }}"
group: "{{ ansible_effective_group_id }}"
mode: "0750"
with_items:
- "{{ arrs_setup_path }}"
tags:
- configuration
become: true
- name: Set up directories
ansible.builtin.file:
state: directory
path: "{{ item }}"
owner: "{% if arrs_uid %}{{ arrs_uid }}{% else %}{{ ansible_effective_user_id }}{%endif%}"
group: "{% if arrs_gid %}{{ arrs_gid }}{% else %}{{ ansible_effective_group_id }}{%endif%}"
mode: "0750"
with_items:
- "{{ deluge_config_volume }}"
- "{{ radarr_config_volume }}"
- "{{ sonarr_config_volume }}"
- "{{ lidarr_config_volume }}"
- "{{ jackett_config_volume }}"
- "{{ arrs_setup_path }}"
tags:
- configuration
become: true

View File

@@ -17,7 +17,7 @@ services:
- arrs
{% endif %}
{% if radarr_enabled %}
sonarr:
radarr:
image: "lscr.io/linuxserver/radarr:{{ radarr_image_version }}"
restart: unless-stopped
env_file: