This commit is contained in:
Tobias 2025-10-20 08:18:37 +02:00 committed by GitHub
parent 189f90d9a7
commit d0a3137185
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,74 +1,45 @@
#!/usr/bin/env bash #!/usr/bin/env bash
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func)
# Copyright (c) 2021-2025 Community-Scripts ORG # Copyright (c) 2021-2025 tteck
# Author: tteck (tteckster) # Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://jellyfin.org/ # Source: https://jellyfin.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" APP="Jellyfin"
var_tags="${var_tags:-media}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}"
var_disk="${var_disk:-8}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_unprivileged="${var_unprivileged:-1}"
header_info "$APP"
variables
color color
verb_ip6
catch_errors catch_errors
setting_up_container
network_check
update_os
msg_info "Setting Up Hardware Acceleration" function update_script() {
if [[ ! -d /etc/apt/keyrings ]]; then header_info
mkdir -p /etc/apt/keyrings check_container_storage
fi check_container_resources
curl -fsSL https://repositories.intel.com/graphics/intel-graphics.key | gpg --dearmor --yes -o /etc/apt/keyrings/intel-graphics.gpg if [[ ! -d /usr/lib/jellyfin ]]; then
cat <<'EOF' | sudo tee /etc/apt/sources.list.d/intel-gpu.sources > /dev/null msg_error "No ${APP} Installation Found!"
Types: deb exit
URIs: https://repositories.intel.com/graphics/ubuntu fi
Suites: stable msg_info "Updating ${APP} LXC"
Components: main $STD apt-get update
Architectures: amd64 $STD apt-get -y upgrade
Signed-By: /etc/apt/keyrings/intel-graphics.gpg $STD apt-get -y --with-new-pkgs upgrade jellyfin jellyfin-server
EOF msg_ok "Updated ${APP} LXC"
exit
}
$STD apt-get -y install {va-driver-all,ocl-icd-libopencl1,intel-opencl-icd,vainfo,intel-gpu-tools} start
if [[ "$CTTYPE" == "0" ]]; then build_container
chgrp video /dev/dri description
chmod 755 /dev/dri
chmod 660 /dev/dri/*
$STD adduser $(id -u -n) video
$STD adduser $(id -u -n) render
fi
msg_ok "Set Up Hardware Acceleration"
msg_info "Installing Jellyfin" msg_ok "Completed Successfully!\n"
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)" echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
# Download the repository signing key and install it to the keyring directory echo -e "${INFO}${YW} Access it using the following URL:${CL}"
curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | gpg --dearmor --yes --output /etc/apt/keyrings/jellyfin.gpg echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:8096${CL}"
# Install the Deb822 format jellyfin.sources entry
cat <<EOF >/etc/apt/sources.list.d/jellyfin.sources
Types: deb
URIs: https://repo.jellyfin.org/${PCT_OSTYPE}
Suites: ${VERSION}
Components: main
Architectures: amd64
Signed-By: /etc/apt/keyrings/jellyfin.gpg
EOF
# Install Jellyfin using the metapackage (which will fetch jellyfin-server, jellyfin-web, and jellyfin-ffmpeg5)
$STD apt-get update
$STD apt-get install -y jellyfin
sed -i 's/"MinimumLevel": "Information"/"MinimumLevel": "Error"/g' /etc/jellyfin/logging.json
chown -R jellyfin:adm /etc/jellyfin
sleep 10
systemctl restart jellyfin
if [[ "$CTTYPE" == "0" ]]; then
sed -i -e 's/^ssl-cert:x:104:$/render:x:104:root,jellyfin/' -e 's/^render:x:108:root,jellyfin$/ssl-cert:x:108:/' /etc/group
else
sed -i -e 's/^ssl-cert:x:104:$/render:x:104:jellyfin/' -e 's/^render:x:108:jellyfin$/ssl-cert:x:108:/' /etc/group
fi
msg_ok "Installed Jellyfin"
motd_ssh
customize
msg_info "Cleaning up"
$STD apt -y autoremove
$STD apt -y autoclean
$STD apt -y clean
msg_ok "Cleaned"