From cee701626cc0f4a868139a4f78f4d345a631fc2c Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 26 Mar 2022 18:33:38 -0400 Subject: [PATCH] Update heimdalldashboard-install.sh --- setup/heimdalldashboard-install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup/heimdalldashboard-install.sh b/setup/heimdalldashboard-install.sh index 30c91325..ec67e047 100644 --- a/setup/heimdalldashboard-install.sh +++ b/setup/heimdalldashboard-install.sh @@ -72,6 +72,10 @@ cd /opt tar xvzf ${RELEASE}.tar.gz &>/dev/null echo -e "${CM}${CL} \r" +SER=$(curl -s https://api.github.com/repos/linuxserver/Heimdall/releases/latest \ +| grep "tag_name" \ +| awk '{print substr($2, 3, length($2)-4) }') + echo -en "${GN} Creating Service... " service_path="/etc/systemd/system/heimdall.service" echo "[Unit] @@ -83,7 +87,7 @@ Restart=always RestartSec=5 Type=simple User=root -WorkingDirectory=/opt/Heimdall-2.4.6 +WorkingDirectory=/opt/Heimdall-${SER} ExecStart="/usr/bin/php" artisan serve --port 7990 --host 0.0.0.0 TimeoutStopSec=30