From aeb9fe32ae6ba44703948e3409950b0b27658e5d Mon Sep 17 00:00:00 2001 From: Marcel Saegebarth Date: Thu, 24 Mar 2016 15:58:36 +0100 Subject: multimedia/plexmediaserver: Updated for version 0.9.16.3.1840. Signed-off-by: Marcel Saegebarth --- .../plexmediaserver/plexmediaserver.SlackBuild | 2 +- multimedia/plexmediaserver/plexmediaserver.info | 10 +- multimedia/plexmediaserver/rc.plexmediaserver | 102 ++++++++++++--------- 3 files changed, 67 insertions(+), 47 deletions(-) (limited to 'multimedia/plexmediaserver') diff --git a/multimedia/plexmediaserver/plexmediaserver.SlackBuild b/multimedia/plexmediaserver/plexmediaserver.SlackBuild index 592050a1bb..b24f490b78 100644 --- a/multimedia/plexmediaserver/plexmediaserver.SlackBuild +++ b/multimedia/plexmediaserver/plexmediaserver.SlackBuild @@ -26,7 +26,7 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=plexmediaserver -VERSION=${VERSION:-0.9.16.2.1827_df572f6} +VERSION=${VERSION:-0.9.16.3.1840_cece46d} PKG_VERSION=$(echo $VERSION | tr _ -) BUILD=${BUILD:-1} TAG=${TAG:-_SBo} diff --git a/multimedia/plexmediaserver/plexmediaserver.info b/multimedia/plexmediaserver/plexmediaserver.info index fb08ea1970..60d8b79e85 100644 --- a/multimedia/plexmediaserver/plexmediaserver.info +++ b/multimedia/plexmediaserver/plexmediaserver.info @@ -1,10 +1,10 @@ PRGNAM="plexmediaserver" -VERSION="0.9.16.2.1827_df572f6" +VERSION="0.9.16.3.1840_cece46d" HOMEPAGE="https://plex.tv/" -DOWNLOAD="https://downloads.plex.tv/plex-media-server/0.9.16.2.1827-df572f6/plexmediaserver_0.9.16.2.1827-df572f6_i386.deb" -MD5SUM="c2110c392dfb9ab740f3a3b18bea30a4" -DOWNLOAD_x86_64="https://downloads.plex.tv/plex-media-server/0.9.16.2.1827-df572f6/plexmediaserver_0.9.16.2.1827-df572f6_amd64.deb" -MD5SUM_x86_64="f8c8a4b0e98da919813d68fa905e1305" +DOWNLOAD="https://downloads.plex.tv/plex-media-server/0.9.16.3.1840-cece46d/plexmediaserver_0.9.16.3.1840-cece46d_i386.deb" +MD5SUM="711cffe72f9ac54da30cb942b2983232" +DOWNLOAD_x86_64="https://downloads.plex.tv/plex-media-server/0.9.16.3.1840-cece46d/plexmediaserver_0.9.16.3.1840-cece46d_amd64.deb" +MD5SUM_x86_64="42ffec47fc6b769bd5409ff0b8ac55d1" REQUIRES="" MAINTAINER="Marcel Saegebarth" EMAIL="marc@mos6581.de" \ No newline at end of file diff --git a/multimedia/plexmediaserver/rc.plexmediaserver b/multimedia/plexmediaserver/rc.plexmediaserver index 94267a11ea..c7432fd495 100644 --- a/multimedia/plexmediaserver/rc.plexmediaserver +++ b/multimedia/plexmediaserver/rc.plexmediaserver @@ -1,55 +1,75 @@ #!/bin/sh - -# /etc/rc.d/rc.plexmediaserver - Start/stop/restart the plexmediaserver daemon. -# To make plexmediaserver start automatically at boot, make this -# file executable: chmod 0755 /etc/rc.d/rc.plexmediaserver and add it -# to slackware's startup scripts (ie: rc.local) + +# Copyright 2016 Marcel Saegebarth +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. # +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -PIDFILE="/var/run/plexmediaserver.pid" +RUN_USER=plex plexmediaserver_start() { - echo "Starting plexmediaserver..." - CHECK=$(ps aux | grep "Plex Media Server" | grep -v grep) - STATUS=$? - - # make sure plexmediaserver isn't running yet - if [ "$STATUS" == "1" ]; then - touch $PIDFILE - chown plex:plex $PIDFILE - - # Start plexmediaserver - sudo -u plex /usr/bin/start_pms & - else - echo "plexmediaserver is already active and running under PID: $(cat $PIDFILE)" - echo "if you think this is wrong, remove the offending PID file" - echo "and restart plexmediaserver" - exit 1 - fi + PIDOF=$(pidof "Plex Media Server") + + if [ -z "$PIDOF" ]; then + echo "Starting plexmediaserver..." + /bin/su -s /bin/sh -l $RUN_USER -c '/usr/bin/start_pms &> /dev/null &' + else + echo "plexmediaserver is already active (PID: $PIDOF)." + exit 1 + fi } plexmediaserver_stop() { + PIDOF=$(pidof "Plex Media Server") + # plugins may still running when stopping plexmediaserver on its startup + # process + PGREP_PLUGINS=$(pgrep -f "Plex Plug-in") + + if [ -z "$PIDOF" ] && [ -z "$PGREP_PLUGINS" ]; then + echo "plexmediaserver is not running..." + exit 1 + else echo -n "Stopping plexmediaserver..." - killall "Plex Media Server" - rm $PIDFILE + + if [ -n "$PIDOF" ]; then + kill -9 $PIDOF + fi + + if [ -n "$PGREP_PLUGINS" ]; then + for i in "$PGREP_PLUGINS"; do + kill -9 $i + done + fi + echo "done" + fi +} + +plexmediaserver_restart() { + plexmediaserver_stop + sleep 3 + plexmediaserver_start } -# Let's see how we are being called. case "$1" in - start) - plexmediaserver_start - ;; - stop) - plexmediaserver_stop - ;; - restart) - plexmediaserver_stop - sleep 3 - plexmediaserver_start - ;; - *) - echo "Usage: $(basename $0) {start|stop|restart}" - exit 1 - ;; + start) plexmediaserver_start ;; + stop) plexmediaserver_stop ;; + restart) plexmediaserver_restart ;; + *) echo "USAGE: $0 start|stop|restart" + exit 1 ;; esac -- cgit v1.2.3