feat: revert back with double play

This commit is contained in:
Simon Cornet 2025-11-01 12:20:27 +01:00
commit ad68cfc6f0
2 changed files with 12 additions and 6 deletions

View file

@ -1,10 +1,9 @@
--- ---
# execute this role # update ansible galaxy
- name: "install Jellyfin" - name: "update ansible galaxy"
hosts: "all" hosts: "localhost"
become: true tasks:
pre_tasks:
# due to semaphore bug we need to do this ourselves # due to semaphore bug we need to do this ourselves
- name: "force-update requirements" - name: "force-update requirements"
@ -15,7 +14,11 @@
changed_when: false changed_when: false
failed_when: false failed_when: false
# execute this role
- name: "install Jellyfin"
hosts: "all"
become: true
roles: roles:
- role: "docker" - role: "docker"
- role: "." - role: "jellyfin"
- role: "traefik" - role: "traefik"

View file

@ -4,6 +4,9 @@ roles:
- name: "docker" - name: "docker"
src: "https://gitlab.simoncor.net/ansible/ans-docker.git" src: "https://gitlab.simoncor.net/ansible/ans-docker.git"
scm: "git" scm: "git"
- name: "jellyfin"
src: "https://gitlab.simoncor.net/ansible/ans-jellyfin.git"
scm: "git"
- name: "traefik" - name: "traefik"
src: "https://gitlab.simoncor.net/ansible/ans-traefik.git" src: "https://gitlab.simoncor.net/ansible/ans-traefik.git"
scm: "git" scm: "git"