From ecac77e1e5e2a39cfae7f166fb1a42efd8288558 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Wed, 5 Mar 2025 09:39:26 -0500 Subject: [PATCH] fix: update update.sh to use custom plex script for stopping and starting the service --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index 58c91bf..6b8189a 100755 --- a/update.sh +++ b/update.sh @@ -2,7 +2,7 @@ # checks if the plexmediaserver.service is defined on this machine. stop it if it is. if systemctl is-active --quiet plexmediaserver.service; then - sudo plex stop + sudo /home/acedanger/shell/plex.sh stop fi sudo nala update @@ -10,5 +10,5 @@ sudo nala upgrade -y # checks if the plexmediaserver.service is defined on this machine. start it if it is. if systemctl is-enabled --quiet plexmediaserver.service; then - sudo plex start + sudo /home/acedanger/shell/plex.sh start fi