From 60e5eb1847b1c6b26b248d9a92912cef4b5bc65d Mon Sep 17 00:00:00 2001 From: Stian Buch Larsen Date: Tue, 26 May 2015 10:47:36 +0200 Subject: [PATCH] Changed Location for version check to a publicly avalible place --- init/20_update_plex.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init/20_update_plex.sh b/init/20_update_plex.sh index f83a117..cd1c7be 100644 --- a/init/20_update_plex.sh +++ b/init/20_update_plex.sh @@ -2,9 +2,9 @@ export DEBIAN_FRONTEND=noninteractive INSTALLED=`dpkg-query -W -f='${Version}' plexmediaserver` if [ -z "$PLEXPASS" ]; then - VERSION=$(curl https://lonix.me/mirror/plex/plexPub.ver) + VERSION=$(curl https://raw.githubusercontent.com/linuxserver/misc-files/master/plex-version/public) else - VERSION=$(curl https://lonix.me/mirror/plex/plexPass.ver) + VERSION=$(curl https://raw.githubusercontent.com/linuxserver/misc-files/master/plex-version/plexpass) fi if [ "$VERSION" == "$INSTALLED" ]; then exit 0;