You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
2 years ago
|
#!/usr/bin/env bash
|
||
|
clear
|
||
|
YW=`echo "\033[33m"`
|
||
|
BL=`echo "\033[36m"`
|
||
|
RD=`echo "\033[01;31m"`
|
||
|
BGN=`echo "\033[4;92m"`
|
||
|
GN=`echo "\033[1;92m"`
|
||
|
DGN=`echo "\033[32m"`
|
||
|
CL=`echo "\033[m"`
|
||
|
BFR="\\r\\033[K"
|
||
|
HOLD="-"
|
||
|
CM="${GN}✓${CL}"
|
||
|
APP="Home Assistant Core"
|
||
|
while true; do
|
||
|
read -p "This will restore ${APP} from a backup. Proceed(y/n)?" yn
|
||
|
case $yn in
|
||
|
[Yy]* ) break;;
|
||
|
[Nn]* ) exit;;
|
||
|
* ) echo "Please answer yes or no.";;
|
||
|
esac
|
||
|
done
|
||
|
clear
|
||
|
function header_info {
|
||
|
cat << "EOF"
|
||
|
__ __ ___ _ __ __ ______
|
||
|
/ / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_ / ____/___ ________
|
||
|
/ /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/ / / / __ \/ ___/ _ \
|
||
|
/ __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_ / /___/ /_/ / / / __/
|
||
|
/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ \____/\____/_/ \___/
|
||
|
RESTORE FROM BACKUP
|
||
|
EOF
|
||
|
}
|
||
|
|
||
|
header_info
|
||
|
|
||
|
function msg_info() {
|
||
|
local msg="$1"
|
||
|
echo -ne " ${HOLD} ${YW}${msg}..."
|
||
|
}
|
||
|
|
||
|
function msg_ok() {
|
||
|
local msg="$1"
|
||
|
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
|
||
|
}
|
||
|
|
||
|
DIR=/root/.restore
|
||
|
if [ -d "$DIR" ];
|
||
|
then
|
||
|
msg_ok "Restore Directory Exists."
|
||
|
else
|
||
|
mkdir -p /root/.restore
|
||
|
msg_ok "Created Restore Directory."
|
||
|
fi
|
||
|
|
||
|
cd /root/.homeassistant/backups/
|
||
|
PS3="Please enter your choice: "
|
||
|
files="$(ls -A .)"
|
||
|
select filename in ${files}; do msg_ok "You selected ${filename}"; break; done
|
||
|
msg_info "Stopping Home Assistant"
|
||
|
sudo service homeassistant stop
|
||
|
msg_ok "Stopped Home Assistant"
|
||
|
|
||
|
msg_info "Restoring Home Assistant using ${filename}"
|
||
|
tar xvf ${filename} -C /root/.restore &>/dev/null
|
||
|
cd /root/.restore
|
||
|
tar -xvf homeassistant.tar.gz &>/dev/null
|
||
|
if ! command -v rsync >/dev/null 2>&1; then
|
||
|
apt-get install -y rsync &>/dev/null
|
||
|
fi
|
||
|
rsync -a /root/.restore/data/ /root/.homeassistant
|
||
|
|
||
|
rm -rf /root/.restore/*
|
||
|
msg_ok "Restore Complete"
|
||
|
msg_ok "Starting Home Assistant"
|
||
|
sudo service homeassistant start
|