Skip to content

Commit

Permalink
v6.34
Browse files Browse the repository at this point in the history
+ DietPi-Software | Jellyfin: Fix implementation for ARMv6 as this is not served via dedicated Raspbian-compatible repository
  • Loading branch information
MichaIng committed Nov 18, 2020
1 parent a948d12 commit b80185a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -6195,12 +6195,14 @@ If you want to update ${aSOFTWARE_NAME[$software_id]}, please use its internal u
Banner_Installing

# Install APT repo key
INSTALL_URL_ADDRESS='https://repo.jellyfin.org/debian/jellyfin_team.gpg.key'
INSTALL_URL_ADDRESS='https://repo.jellyfin.org/jellyfin_team.gpg.key'
G_CHECK_URL "$INSTALL_URL_ADDRESS"
G_EXEC eval "curl -sSLf '$INSTALL_URL_ADDRESS' | gpg --dearmor -o /etc/apt/trusted.gpg.d/dietpi-jellyfin.gpg --yes"
G_EXEC eval "curl -sSfL '$INSTALL_URL_ADDRESS' | gpg --dearmor -o /etc/apt/trusted.gpg.d/dietpi-jellyfin.gpg --yes"

# Install APT repo
echo "deb https://repo.jellyfin.org/debian/ $G_DISTRO_NAME main" > /etc/apt/sources.list.d/dietpi-jellyfin.list
local distro='debian'
(( $G_HW_ARCH == 1 )) && distro='raspbian'
echo "deb https://repo.jellyfin.org/$distro/ $G_DISTRO_NAME main" > /etc/apt/sources.list.d/dietpi-jellyfin.list
G_AGUP

# Install Jellyfin + FFmpeg implementation
Expand Down

0 comments on commit b80185a

Please sign in to comment.