Add a if not uptodate :P
This commit is contained in:
parent
5c13966493
commit
891fe98e5d
1 changed files with 11 additions and 7 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
|
||||
INSTALLED=`dpkg-query -W -f='${Version}' plexmediaserver`
|
||||
|
||||
if [[ "$PLEXPASS" ]]; then
|
||||
echo "PLEXPASS is depricated, please use VERSION"
|
||||
|
|
@ -18,12 +18,16 @@ else
|
|||
fi
|
||||
|
||||
last=130
|
||||
|
||||
while [ last -ne "0"]; do
|
||||
rm -f /tmp/plexmediaserver_*.deb
|
||||
wget -P /tmp "http://downloads.plexapp.com/plex-media-server/$VERSION/plexmediaserver_${VERSION}_amd64.deb"
|
||||
last=$?
|
||||
done
|
||||
if [[ ! "$VERSION" == "$INSTALLED "]]; then
|
||||
echo "Upgradeing from version: $INSTALLED to version: $VERSION"
|
||||
while [ last -ne "0"]; do
|
||||
rm -f /tmp/plexmediaserver_*.deb
|
||||
wget -P /tmp "http://downloads.plexapp.com/plex-media-server/$VERSION/plexmediaserver_${VERSION}_amd64.deb"
|
||||
last=$?
|
||||
done
|
||||
else
|
||||
echo "Allready Uptodate"
|
||||
fi
|
||||
|
||||
apt-get remove --purge -y plexmediaserver
|
||||
gdebi -n /tmp/plexmediaserver_${VERSION}_amd64.deb
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue