27 lines
718 B
YAML
27 lines
718 B
YAML
# TODO: implement
|
|
---
|
|
- debug:
|
|
msg: unable to install on RedHat distros
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
- name: append to syspkgs
|
|
block:
|
|
# - ansible.builtin.tempfile:
|
|
# state: directory
|
|
# prefix: jellyfin.
|
|
# register: d_jellyfin_tmp
|
|
#
|
|
# - name: get install script
|
|
# ansible.builtin.get_url:
|
|
# url: https://repo.jellyfin.org/install-debuntu.sh
|
|
# dest: "{{ d_jellyfin_tmp.path }}/install-debuntu.sh"
|
|
#
|
|
- debug:
|
|
msg: "TODO: complete install configuration"
|
|
when: ansible_os_family == 'Debian'
|
|
|
|
- name: append to caskpkgs
|
|
ansible.builtin.set_fact:
|
|
caskpkgs: "{{ caskpkgs + [ 'jellyfin' ] }}"
|
|
when: ansible_os_family == 'Darwin'
|