mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
When running certain scripts, sometimes an 'm' character is wrongly output to the terminal. This PR fixes all instances of this happening. I've also made 'RD' (red) consistent with 'GN' (green) by removing the leading 0, and my editor has kindly removed all trailing spaces from files.
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
RELEASE=$(curl -s https://api.github.com/repos/zadam/trilium/releases/latest \
|
|
| grep "tag_name" \
|
|
| awk '{print substr($2, 3, length($2)-4) }')
|
|
|
|
RD=`echo "\033[1;31m"`
|
|
BL=`echo "\033[36m"`
|
|
CM='\xE2\x9C\x94\033'
|
|
GN=`echo "\033[1;92m"`
|
|
CL=`echo "\033[0m"`
|
|
function update_info {
|
|
cat << "EOF"
|
|
______ _ ___
|
|
/_ __/____(_) (_)_ ______ ___
|
|
/ / / ___/ / / / / / / __ `__ \
|
|
/ / / / / / / / /_/ / / / / / /
|
|
/_/ /_/ /_/_/_/\__,_/_/ /_/ /_/
|
|
UPDATE
|
|
|
|
EOF
|
|
}
|
|
update_info
|
|
while true; do
|
|
read -p "This will Update Trilium to v$RELEASE. Proceed(y/n)?" yn
|
|
case $yn in
|
|
[Yy]* ) break;;
|
|
[Nn]* ) exit;;
|
|
* ) echo "Please answer yes or no.";;
|
|
esac
|
|
done
|
|
sleep 2
|
|
echo -e "${GN} Stopping Trilium... ${CL}"
|
|
systemctl stop trilium.service
|
|
sleep 1
|
|
|
|
echo -e "${GN} Updating to v${RELEASE}... ${CL}"
|
|
wget -q https://github.com/zadam/trilium/releases/download/v$RELEASE/trilium-linux-x64-server-$RELEASE.tar.xz
|
|
|
|
tar -xvf trilium-linux-x64-server-$RELEASE.tar.xz &>/dev/null
|
|
cp -r trilium-linux-x64-server/* /opt/trilium/
|
|
echo -e "${GN} Cleaning up... ${CL}"
|
|
rm -rf trilium-linux-x64-server-$RELEASE.tar.xz trilium-linux-x64-server
|
|
|
|
echo -e "${GN} Starting Trilium... ${CL}"
|
|
systemctl start trilium.service
|
|
sleep 1
|
|
echo -e "${GN} Finished Update ${CL}"
|