From 44e4b4f1559374ec009efcaa92b26fa8e125bbc7 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 2 Apr 2022 08:58:19 -0400 Subject: [PATCH] Delete heimdalldashboard-weird-update.sh --- misc/heimdalldashboard-weird-update.sh | 92 -------------------------- 1 file changed, 92 deletions(-) delete mode 100644 misc/heimdalldashboard-weird-update.sh diff --git a/misc/heimdalldashboard-weird-update.sh b/misc/heimdalldashboard-weird-update.sh deleted file mode 100644 index fe9341c0..00000000 --- a/misc/heimdalldashboard-weird-update.sh +++ /dev/null @@ -1,92 +0,0 @@ -#!/usr/bin/env bash -set -e -PP=`echo "\e[1;35m"` -RD=`echo "\033[01;31m"` -BL=`echo "\033[36m"` -CM='\xE2\x9C\x94\033' -GN=`echo "\033[1;92m"` -CL=`echo "\033[m"` -while true; do - read -p "This will Update Heimdall Dashboard weird to Current. Proceed(y/n)?" yn - case $yn in - [Yy]* ) break;; - [Nn]* ) exit;; - * ) echo "Please answer yes or no.";; - esac -done -clear -function header_info { -echo -e "${PP} - _ _ _ _ _ _ _____ _ _ _ - | | | | (_) | | | | | | __ \ | | | | | | - | |__| | ___ _ _ __ ___ __| | __ _| | | | | | | __ _ ___| |__ | |__ ___ __ _ _ __ __| | - | __ |/ _ \ | _ _ \ / _ |/ _ | | | | | | |/ _ / __| _ \| _ \ / _ \ / _ | __/ _ | - | | | | __/ | | | | | | (_| | (_| | | | | |__| | (_| \__ \ | | | |_) | (_) | (_| | | | (_| | - |_| |_|\___|_|_| |_| |_|\__,_|\__,_|_|_| |_____/ \__,_|___/_| |_|_.__/ \___/ \__,_|_| \__,_| - ${RD}UPDATE FROM WEIRD ONLY! -${CL}" -} - -header_info - -echo -en "${GN} Stopping Heimdall Dashboard... " -systemctl disable heimdall.service &>/dev/null -systemctl stop heimdall -sleep 1 -echo -e "${CM}${CL} \r" - -echo -en "${GN} Backing up Data... " -cp -R /opt/Heimdall-2.4.8/database database-backup -cp -R /opt/Heimdall-2.4.8/public public-backup -sleep 1 -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} Updating Heimdall Dashboard to ${RELEASE}... " -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 -VER=$(curl -s https://api.github.com/repos/linuxserver/Heimdall/releases/latest \ -| grep "tag_name" \ -| awk '{print substr($2, 3, length($2)-4) }') - -mv Heimdall-${VER} /opt/Heimdall -echo -e "${CM}${CL} \r" - -service_path="/etc/systemd/system/heimdall.service" -echo "[Unit] -Description=Heimdall -After=network.target - -[Service] -Restart=always -RestartSec=5 -Type=simple -User=root -WorkingDirectory=/opt/Heimdall -ExecStart="/usr/bin/php" artisan serve --port 7990 --host 0.0.0.0 -TimeoutStopSec=30 - -[Install] -WantedBy=multi-user.target" > $service_path - -echo -en "${GN} Restoring Data... " -cp -R database-backup/* /opt/Heimdall/database -cp -R public-backup/* /opt/Heimdall/public -sleep 1 -echo -e "${CM}${CL} \r" - -echo -en "${GN} Cleanup... " -rm -rf ${RELEASE}.tar.gz -rm -rf public-backup -rm -rf database-backup -rm -rf /opt/Heimdall-2.4.8 -rm -rf /opt/v2.4.8.tar.gz -sleep 1 -echo -e "${CM}${CL} \r" - -echo -en "${GN} Starting Heimdall Dashboard... " -systemctl enable --now heimdall.service &>/dev/null -sleep 2 -echo -e "${CM}${CL} \r" - -echo -en "${GN} Finished! ${CL}\n"