Added Sonarr, Radarr, Lidarr and Prowlarr to aya01

Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
This commit is contained in:
TuDatTr
2023-04-14 19:02:45 +02:00
parent 6c0ea656eb
commit 3d7f143a2a
9 changed files with 225 additions and 8 deletions

View File

@@ -1,9 +1,22 @@
---
- name: Create plex-config directory
file:
path: "{{plex_config}}"
owner: 1000
group: 1000
path: "{{ plex_config }}"
owner: "{{ puid }}"
group: "{{ pgid }}"
mode: '755'
state: directory
become: yes
- name: Create plex media directories
file:
path: "{{ item }}"
owner: "{{ puid }}"
group: "{{ pgid }}"
mode: '755'
state: directory
become: yes
loop:
- "{{ plex_tv }}"
- "{{ plex_movies }}"
- "{{ plex_music }}"