mirror of https://github.com/tteck/Proxmox.git
Compare commits
No commits in common. "6d644b35d73c7874dcf8202d3ef8a0af57f04e7c" and "b1451e795e1f0675fcd6c0d12cc216939edab9e0" have entirely different histories.
6d644b35d7
...
b1451e795e
|
@ -2,14 +2,6 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## 2023-04-05
|
|
||||||
|
|
||||||
### Changed
|
|
||||||
|
|
||||||
- **Jellyfin LXC**
|
|
||||||
- Set Ubuntu 22.04 as default
|
|
||||||
- Use the Deb822 format jellyfin.sources configuration (jellyfin.list configuration has been obsoleted)
|
|
||||||
|
|
||||||
## 2023-04-02
|
## 2023-04-02
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -24,7 +24,7 @@ var_disk="8"
|
||||||
var_cpu="2"
|
var_cpu="2"
|
||||||
var_ram="2048"
|
var_ram="2048"
|
||||||
var_os="ubuntu"
|
var_os="ubuntu"
|
||||||
var_version="22.04"
|
var_version="20.04"
|
||||||
variables
|
variables
|
||||||
color
|
color
|
||||||
catch_errors
|
catch_errors
|
||||||
|
|
|
@ -16,8 +16,9 @@ update_os
|
||||||
msg_info "Installing Dependencies"
|
msg_info "Installing Dependencies"
|
||||||
$STD apt-get install -y curl
|
$STD apt-get install -y curl
|
||||||
$STD apt-get install -y sudo
|
$STD apt-get install -y sudo
|
||||||
$STD apt-get install -y gnupg
|
|
||||||
$STD apt-get install -y mc
|
$STD apt-get install -y mc
|
||||||
|
$STD apt-get install -y apt-transport-https
|
||||||
|
$STD apt-get install -y software-properties-common
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then
|
if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then
|
||||||
|
@ -36,28 +37,36 @@ if [[ -z "$(grep -w "100000" /proc/self/uid_map)" ]]; then
|
||||||
msg_ok "Set Up Hardware Acceleration"
|
msg_ok "Set Up Hardware Acceleration"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
msg_info "Setting Up Jellyfin Repository"
|
||||||
|
$STD add-apt-repository universe -y
|
||||||
|
$STD apt-key add <(curl -fsSL https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key)
|
||||||
|
sh -c 'echo "deb [arch=$(dpkg --print-architecture)] https://repo.jellyfin.org/ubuntu $(lsb_release -c -s) main" > /etc/apt/sources.list.d/jellyfin.list'
|
||||||
|
msg_ok "Set Up Jellyfin Repository"
|
||||||
|
|
||||||
msg_info "Installing Jellyfin"
|
msg_info "Installing Jellyfin"
|
||||||
VERSION="$( awk -F'=' '/^UBUNTU_CODENAME=/{ print $NF }' /etc/os-release )"
|
|
||||||
# If the keyring directory is absent, create it
|
|
||||||
if [[ ! -d /etc/apt/keyrings ]]; then
|
|
||||||
mkdir -p /etc/apt/keyrings
|
|
||||||
fi
|
|
||||||
# Download the repository signing key and install it to the keyring directory
|
|
||||||
curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | gpg --dearmor --yes --output /etc/apt/keyrings/jellyfin.gpg
|
|
||||||
# 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 update
|
||||||
$STD apt-get install -y jellyfin
|
$STD apt install jellyfin-server -y
|
||||||
|
$STD apt install jellyfin-ffmpeg5 -y
|
||||||
msg_ok "Installed Jellyfin"
|
msg_ok "Installed Jellyfin"
|
||||||
|
|
||||||
|
msg_info "Creating Service"
|
||||||
|
cat <<'EOF' >/lib/systemd/system/jellyfin.service
|
||||||
|
[Unit]
|
||||||
|
Description = Jellyfin Media Server
|
||||||
|
After = network.target
|
||||||
|
[Service]
|
||||||
|
Type = simple
|
||||||
|
EnvironmentFile = /etc/default/jellyfin
|
||||||
|
User = root
|
||||||
|
ExecStart = /usr/bin/jellyfin
|
||||||
|
Restart = on-failure
|
||||||
|
TimeoutSec = 15
|
||||||
|
[Install]
|
||||||
|
WantedBy = multi-user.target
|
||||||
|
EOF
|
||||||
|
ln -s /usr/share/jellyfin/web/ /usr/lib/jellyfin/bin/jellyfin-web
|
||||||
|
msg_ok "Created Service"
|
||||||
|
|
||||||
motd_ssh
|
motd_ssh
|
||||||
root
|
root
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue