Files

44 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2023-03-22 20:48:20 -04:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2023-03-22 20:48:20 -04:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://emby.media/
2023-03-22 20:48:20 -04:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2023-03-22 20:48:20 -04:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
2024-04-28 09:06:03 -04:00
msg_info "Setting Up Hardware Acceleration"
$STD apt-get -y install {va-driver-all,ocl-icd-libopencl1,intel-opencl-icd,vainfo,intel-gpu-tools}
2023-05-15 07:39:30 -04:00
if [[ "$CTTYPE" == "0" ]]; then
2023-12-03 14:40:39 -05:00
chgrp video /dev/dri
chmod 755 /dev/dri
chmod 660 /dev/dri/*
$STD adduser $(id -u -n) video
$STD adduser $(id -u -n) render
2023-03-22 20:48:20 -04:00
fi
2024-04-28 09:06:03 -04:00
msg_ok "Set Up Hardware Acceleration"
2023-03-22 20:48:20 -04:00
2025-07-08 21:26:13 +02:00
fetch_and_deploy_gh_release "emby" "MediaBrowser/Emby.Releases" "binary"
2023-03-22 20:48:20 -04:00
2025-07-08 21:26:13 +02:00
msg_info "Configuring Emby"
2024-04-28 09:06:03 -04:00
if [[ "$CTTYPE" == "0" ]]; then
sed -i -e 's/^ssl-cert:x:104:$/render:x:104:root,emby/' -e 's/^render:x:108:root,emby$/ssl-cert:x:108:/' /etc/group
else
sed -i -e 's/^ssl-cert:x:104:$/render:x:104:emby/' -e 's/^render:x:108:emby$/ssl-cert:x:108:/' /etc/group
fi
2025-07-08 21:26:13 +02:00
msg_ok "Configured Emby"
2023-03-22 20:48:20 -04:00
motd_ssh
2023-05-15 07:39:30 -04:00
customize
2023-03-22 20:48:20 -04:00
msg_info "Cleaning up"
2024-06-02 08:00:22 -04:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
2023-03-22 20:48:20 -04:00
msg_ok "Cleaned"