Update heimdalldashboard-install.sh

This commit is contained in:
tteckster 2022-03-27 13:50:16 -04:00 committed by GitHub
parent 457053041b
commit de268d6fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -67,14 +67,14 @@ echo -e "${CM}${CL} \r"
RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]')
echo -en "${GN} Installing Heimdall Dashboard ${RELEASE}... "
curl --silent -o /opt/${RELEASE}.tar.gz -L "https://github.com/linuxserver/Heimdall/archive/${RELEASE}.tar.gz" &>/dev/null
cd /opt
curl --silent -o ${RELEASE}.tar.gz -L "https://github.com/linuxserver/Heimdall/archive/${RELEASE}.tar.gz" &>/dev/null
tar xvzf ${RELEASE}.tar.gz &>/dev/null
echo -e "${CM}${CL} \r"
SER=$(curl -s https://api.github.com/repos/linuxserver/Heimdall/releases/latest \
VER=$(curl -s https://api.github.com/repos/linuxserver/Heimdall/releases/latest \
| grep "tag_name" \
| awk '{print substr($2, 3, length($2)-4) }')
rm -rf ${RELEASE}.tar.gz
mv Heimdall-${VER} /opt/Heimdall
echo -e "${CM}${CL} \r"
echo -en "${GN} Creating Service... "
service_path="/etc/systemd/system/heimdall.service"
@ -87,7 +87,7 @@ Restart=always
RestartSec=5
Type=simple
User=root
WorkingDirectory=/opt/Heimdall-${SER}
WorkingDirectory=/opt/Heimdall
ExecStart="/usr/bin/php" artisan serve --port 7990 --host 0.0.0.0
TimeoutStopSec=30