mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-12-25 16:36:24 +01:00
Migrated all install scripts to use the centralized setup_hwaccel function: - plex-install.sh - emby-install.sh - ersatztv-install.sh - frigate-install.sh - tdarr-install.sh - unmanic-install.sh - channels-install.sh - ollama-install.sh - immich-install.sh (added error handling) Enhanced setup_hwaccel function in tools.func: - Added -d /dev/dri check before setting permissions - Added error handling (2>/dev/null || true) for all /dev/dri operations - Added adduser error handling for video/render groups - No longer fails if no GPU is detected (graceful skip) - Added intel-media-va-driver for newer Intel GPUs - Improved AMD APU support with firmware packages - Better NVIDIA handling (warning instead of failure) This fixes installation failures in privileged containers without GPU passthrough, where /dev/dri does not exist. Supports: Ubuntu, Debian 12 (Bookworm), Debian 13 (Trixie) GPU Support: Intel, AMD, NVIDIA (manual driver)
64 lines
1.4 KiB
Bash
64 lines
1.4 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 tteck
|
|
# Author: tteck (tteckster)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://docs.unmanic.app/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies (Patience)"
|
|
$STD apt install -y \
|
|
ffmpeg \
|
|
python3-pip
|
|
msg_ok "Installed Dependencies"
|
|
|
|
setup_hwaccel
|
|
|
|
# Sync GID for video/render groups between host and container
|
|
if [[ "$CTTYPE" == "0" ]]; then
|
|
VIDEO_GID=$(getent group video | cut -d: -f3)
|
|
RENDER_GID=$(getent group render | cut -d: -f3)
|
|
if [[ -n "$VIDEO_GID" && -n "$RENDER_GID" ]]; then
|
|
sed -i "s/^video:x:[0-9]*:/video:x:$VIDEO_GID:/" /etc/group
|
|
sed -i "s/^render:x:[0-9]*:/render:x:$RENDER_GID:/" /etc/group
|
|
fi
|
|
else
|
|
VIDEO_GID=$(getent group video | cut -d: -f3)
|
|
RENDER_GID=$(getent group render | cut -d: -f3)
|
|
fi
|
|
|
|
msg_info "Installing Unmanic"
|
|
$STD pip3 install unmanic
|
|
msg_ok "Installed Unmanic"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/unmanic.service
|
|
[Unit]
|
|
Description=Unmanic - Library Optimiser
|
|
After=network-online.target
|
|
StartLimitInterval=200
|
|
StartLimitBurst=3
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/local/bin/unmanic
|
|
Restart=always
|
|
RestartSec=30
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable --now -q unmanic.service
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|