Update core-restore-from-backup.sh

This commit is contained in:
tteckster 2022-10-26 12:34:51 -04:00 committed by GitHub
parent 76a9d00a64
commit ca08e20253
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,6 +46,7 @@ function msg_error() {
local msg="$1"
echo -e "${BFR} ${CROSS} ${RD}${msg}${CL}"
}
if [ -z "$(ls -A /root/.homeassistant/backups/)" ]; then msg_error "No backups found! \n"; exit 1; fi
DIR=/root/.homeassistant/restore
if [ -d "$DIR" ];
then
@ -54,7 +55,6 @@ else
mkdir -p /root/.homeassistant/restore
msg_ok "Created Restore Directory."
fi
if [ -z "$(ls -A /root/.homeassistant/backups/)" ]; then msg_error "No backups found! \n"; exit 1; fi
cd /root/.homeassistant/backups/
PS3="Please enter your choice: "
files="$(ls -A .)"