ansible-role-jellyfin/tasks/configure.yml

19 lines
404 B
YAML
Raw Normal View History

2022-10-11 09:18:59 +02:00
---
- 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