From a0d68daae7dadd698dd2544e5c60d2b67f65b041 Mon Sep 17 00:00:00 2001 From: Brett Petch Date: Sun, 3 Sep 2023 20:02:15 -0400 Subject: [PATCH] bugfix: Hotio check for proper directory to exist for service start/stop --- DBRepair.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DBRepair.sh b/DBRepair.sh index 3162c98..b8c1b99 100755 --- a/DBRepair.sh +++ b/DBRepair.sh @@ -579,7 +579,7 @@ HostConfig() { DBDIR="$AppSuppDir/Plug-in Support/Databases" LOGFILE="$DBDIR/DBRepair.log" LOG_TOOL="logger" - if [ -d /run/service/plex ]; then + if [ -d /run/service/service-plex ]; then HaveStartStop=1 StartCommand="s6-svc -u /run/service/service-plex" StopCommand="s6-svc -d /run/service/service-plex"