- migrate media applications to new cephfs pool + incus - enable exporting haproxy - move ceph-client-setup to only apply to non-lxc hosts - ensure unrar is installed for nzbget - updated jellyfin use of data_dir - set lxc instances for jellyfin to use /shared/apps/jellyfin Reviewed-on: https://git.query.consul/unkinben/puppet-prod/pulls/299
14 lines
324 B
Puppet
14 lines
324 B
Puppet
# jellyfin params
|
|
class jellyfin::params (
|
|
Array[String] $packages = [
|
|
'jellyfin-web',
|
|
'jellyfin-server',
|
|
'jellyfin-ffmpeg-bin',
|
|
'SDL2',
|
|
'ffmpeg',
|
|
'ffmpeg-devel',
|
|
],
|
|
String $service_name = 'jellyfin',
|
|
Boolean $service_enable = true,
|
|
) { }
|