Plex : télécharger les mises à jour automatiquement
Aller à la navigation
Aller à la recherche
#! /bin/bash target="https://plex.tv/downloads" if [ "$1" == "cron" ]; then cron=1 else cron=0 fi w3m -dump $target 2>/dev/null > /root/plexupdate/tmp/plex_downloads.html latest_version=`grep -C 3 "Ubuntu" /root/plexupdate/tmp/plex_downloads.html | grep Version | cut -d" " -f6` if [ $cron = 0 ]; then echo "Latest version is $latest_version"; fi current_version=`dpkg -s plexmediaserver | grep Version: | cut -d" " -f2` if [ $cron = 0 ]; then echo "Current version is $current_version"; fi current_version="plop" if [ ! "$latest_version" == "$current_version" ]; then echo "A new plex version is available" if [ ! -f /root/plexupdate/plexmediaserver_"$latest_version"_amd64.deb ]; then echo "downloading new plex version $latest_version" wget -q -O plexmediaserver_"$latest_version"_amd64.deb https://downloads.plex.tv/plex-media-server/"$latest_version"/plexmediaserver_"$latest_version"_amd64.deb fi echo "install it using dpkg -i plexmediaserver_"$latest_version"_amd64.deb" fi