Create dashy-update.sh

This commit is contained in:
tteckster 2022-03-15 08:25:40 -04:00 committed by GitHub
parent ccb971c5fc
commit 9f40d57057
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

36
misc/dashy-update.sh Normal file
View File

@ -0,0 +1,36 @@
#!/usr/bin/env bash
set -e
RD=`echo "\033[01;31m"`
BL=`echo "\033[36m"`
CM='\xE2\x9C\x94\033'
GN=`echo "\033[1;92m"`
CL=`echo "\033[m"`
clear
echo -en "${GN} Stopping Dashy... "
systemctl stop dashy
echo -e "${CM}${CL} \r"
echo -en "${GN} Backup Data... "
cp -R /dashy/public public-backup
echo -e "${CM}${CL} \r"
echo -en "${GN} Updating Dashy... "
git merge
git pull origin master
yarn
yarn build
echo -e "${CM}${CL} \r"
echo -en "${GN} Restoring Data... "
cp -R public-backup/* /dashy/public
echo -e "${CM}${CL} \r"
echo -en "${GN} Cleaning... "
rm -rf public-backup
echo -e "${CM}${CL} \r"
echo -en "${GN} Starting Dashy... "
systemctl start dashy
echo -e "${CM}${CL} \r"
echo -e "${GN} Finished ${CL}\n"