Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 97752ebf58 | |||
| 482e48c26e | |||
| b963045b89 |
@@ -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
|
||||
@@ -26,6 +38,7 @@
|
||||
loop:
|
||||
- "docker-compose.yml"
|
||||
- "env.deluge.conf"
|
||||
- "env.radarr.conf"
|
||||
- "env.sonarr.conf"
|
||||
- "env.lidarr.conf"
|
||||
- "env.jackett.conf"
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user