install dependencies
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Robert Kaussow 2019-02-01 23:38:51 +01:00
parent 8dcc828475
commit ef4c6252a5
2 changed files with 14 additions and 0 deletions

View File

@ -22,6 +22,14 @@ jellyfin_conf_dir: "{{ jellyfin_base_dir }}/config"
jellyfin_data_dir: "{{ jellyfin_base_dir }}/data"
jellyfin_log_dir: "{{ jellyfin_base_dir }}/log"
jellyfin_dependencies:
- lttng-ust
- libcurl
- openssl-libs
- krb5-libs
- libicu
- zlib
jellyfin_logrotate_enabled: False
jellyfin_logrotate_config:
- log: "{{ jellyfin_log_dir }}/jellyfin.log"

View File

@ -14,5 +14,11 @@
uid: "{{ jellyfin_uid | default(omit) }}"
group: "{{ jellyfin_group }}"
groups: "{{ jellyfin_extra_groups | join(',') }}"
- name: Install dependencies
package:
name: "{{ item }}"
state: present
loop: "{{ jellyfin_dependencies }}"
become: True
become_user: root