mirror of
https://github.com/tteck/Proxmox.git
synced 2024-11-17 20:11:17 +00:00
Update dashy-update.sh
This commit is contained in:
parent
1a41890e05
commit
1f4a5ecd5f
@ -1,11 +1,34 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
clear
|
||||||
RD=`echo "\033[01;31m"`
|
YW=`echo "\033[33m"`
|
||||||
BL=`echo "\033[36m"`
|
BL=`echo "\033[36m"`
|
||||||
|
RD=`echo "\033[01;31m"`
|
||||||
CM='\xE2\x9C\x94\033'
|
CM='\xE2\x9C\x94\033'
|
||||||
GN=`echo "\033[1;92m"`
|
GN=`echo "\033[1;92m"`
|
||||||
CL=`echo "\033[m"`
|
CL=`echo "\033[m"`
|
||||||
|
while true; do
|
||||||
|
read -p "This will Update Dashy LXC. Proceed(y/n)?" yn
|
||||||
|
case $yn in
|
||||||
|
[Yy]* ) break;;
|
||||||
|
[Nn]* ) exit;;
|
||||||
|
* ) echo "Please answer yes or no.";;
|
||||||
|
esac
|
||||||
|
done
|
||||||
clear
|
clear
|
||||||
|
function header_info {
|
||||||
|
echo -e "${RD}
|
||||||
|
_____ _
|
||||||
|
| __ \ | |
|
||||||
|
| | | | __ _ ___| |__ _ _
|
||||||
|
| | | |/ _ / __| _ \| | | |
|
||||||
|
| |__| | (_| \__ \ | | | |_| |
|
||||||
|
|_____/ \__,_|___/_| |_|\__, |
|
||||||
|
UPDATE __/ |
|
||||||
|
|___/
|
||||||
|
${CL}"
|
||||||
|
}
|
||||||
|
|
||||||
|
header_info
|
||||||
echo -en "${GN} Stopping Dashy... "
|
echo -en "${GN} Stopping Dashy... "
|
||||||
systemctl stop dashy
|
systemctl stop dashy
|
||||||
sleep 1
|
sleep 1
|
||||||
|
Loading…
Reference in New Issue
Block a user