12 lines
222 B
YAML
12 lines
222 B
YAML
|
---
|
||
|
- name: Create jellyfin-config directory
|
||
|
file:
|
||
|
path: "{{ item }}"
|
||
|
owner: "{{ puid }}"
|
||
|
group: "{{ pgid }}"
|
||
|
mode: '755'
|
||
|
state: directory
|
||
|
become: yes
|
||
|
loop:
|
||
|
- "{{ jellyseer.volumes.config }}"
|