Update core-restore-from-backup.sh

This commit is contained in:
tteckster 2022-10-26 12:21:53 -04:00 committed by GitHub
parent aa18221a45
commit b029f3ef3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,7 @@ CL=`echo "\033[m"`
BFR="\\r\\033[K" BFR="\\r\\033[K"
HOLD="-" HOLD="-"
CM="${GN}${CL}" CM="${GN}${CL}"
CROSS="${RD}${CL}"
APP="Home Assistant Core" APP="Home Assistant Core"
while true; do while true; do
read -p "This will restore ${APP} from a backup. Proceed(y/n)?" yn read -p "This will restore ${APP} from a backup. Proceed(y/n)?" yn
@ -41,6 +42,10 @@ function msg_ok() {
local msg="$1" local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}" echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
} }
function msg_error() {
local msg="$1"
echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}"
}
DIR=/root/.homeassistant/restore DIR=/root/.homeassistant/restore
if [ -d "$DIR" ]; if [ -d "$DIR" ];
then then
@ -49,7 +54,7 @@ else
mkdir -p /root/.homeassistant/restore mkdir -p /root/.homeassistant/restore
msg_ok "Created Restore Directory." msg_ok "Created Restore Directory."
fi fi
if [ -z "$(ls -A /root/.homeassistant/backups/)" ]; then echo -e "${RD}No backups found!${CL} \n"; exit 1; fi if [ -z "$(ls -A /root/.homeassistant/backups/)" ]; then msg_error "No backups found! \n"; exit 1; fi
cd /root/.homeassistant/backups/ cd /root/.homeassistant/backups/
PS3="Please enter your choice: " PS3="Please enter your choice: "
files="$(ls -A .)" files="$(ls -A .)"