Add files via upload

This commit is contained in:
tteckster 2022-01-25 20:50:30 -05:00 committed by GitHub
parent 10e5e94860
commit bbb40327ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -33,7 +33,7 @@ echo -e "${CHECKMARK} \e[1;92m Updating Container OS... \e[0m"
apt update &>/dev/null
apt-get -qqy upgrade &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Dependecies... \e[0m"
echo -e "${CHECKMARK} \e[1;92m Installing Dependencies... \e[0m"
apt-get -qqy install \
curl \
sudo \
@ -50,8 +50,7 @@ apt-get -qqy install \
/bin/chmod 660 /dev/dri/*
echo -e "${CHECKMARK} \e[1;92m Setting Up Jellyfin Repository... \e[0m"
wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key &>/dev/null
apt-key add - &>/dev/null
wget -O - https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo apt-key add - &>/dev/null
echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/debian bullseye main" | tee /etc/apt/sources.list.d/jellyfin.list &>/dev/null
echo -e "${CHECKMARK} \e[1;92m Installing Jellyfin... \e[0m"
apt update &>/dev/null