ansible-role-jellyfin/tasks/configure.yml

19 lines
No EOL
404 B
YAML

---
- name: Ensure ufw allow connections
ufw:
rule: allow
port: "{{ http_port }}"
#- name: Ensure Jellyfin is configured
# notify: Restart Jellyfin
- name: Ensure Apache2 is configured to redirect to Jellyfin
include_role:
name: apache_ssl_vhosts
when: configure_apache
- name: Ensure Jellyfin service is configured
service:
name: jellyfin
enabled: true
state: started