cleanup: fixed role execution order and directory chmod permissions

This commit is contained in:
mustard 2025-10-14 00:21:16 +02:00
parent 8f18302f3f
commit b58ef7ab84
2 changed files with 17 additions and 3 deletions

View file

@ -1,5 +1,6 @@
---
- hosts: jellyfin
roles:
- acme.sh
- nginx
- jellyfin

View file

@ -57,8 +57,21 @@
state: started
enabled: true
- name: Enable podman auto updates
ansible.builtin.systemd_service:
name: podman-auto-update.timer
state: started
enabled: true
- name: Add /srv dir
ansible.builtin.file:
path: /src
path: /srv
state: directory
mode: '0644'
mode: '0755'
- name: Add /secrets dir
ansible.builtin.file:
path: /secrets
state: directory
mode: '0755'