feat: include roles

This commit is contained in:
Simon Cornet 2025-11-01 12:40:38 +01:00
commit 51cdb5271f

View file

@ -14,11 +14,16 @@
changed_when: false
failed_when: false
# execute this role
- name: "install Jellyfin"
hosts: "all"
become: true
roles:
- role: "docker"
- role: "jellyfin"
- role: "traefik"
# execute the roles
- name: "include docker role"
ansible.builtin.include_role:
name: "docker"
- name: "include jellyfin role"
ansible.builtin.include_role:
name: "jellyfin"
- name: "include traefik role"
ansible.builtin.include_role:
name: "traefik"