mirror of
				https://github.com/community-scripts/ProxmoxVE.git
				synced 2025-11-04 02:12:49 +00:00 
			
		
		
		
	* Move Scripts to Tools / Add-Ons * fix json editor slug generating * update type in jsons * remove wrong method * move copy-data to tools
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Copyright (c) 2021-2025 tteck
 | 
						|
# Author: tteck (tteckster)
 | 
						|
# License: MIT
 | 
						|
# https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
 | 
						|
 | 
						|
clear
 | 
						|
if command -v pveversion >/dev/null 2>&1; then
 | 
						|
    echo -e "⚠️  Can't Run from the Proxmox Shell"
 | 
						|
    exit
 | 
						|
fi
 | 
						|
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}"
 | 
						|
CROSS="${RD}✗${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}"
 | 
						|
}
 | 
						|
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
 | 
						|
    msg_ok "Restore Directory Exists."
 | 
						|
else
 | 
						|
    mkdir -p /root/.homeassistant/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 ${BL}${filename}${CL}"
 | 
						|
    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/.homeassistant/restore &>/dev/null
 | 
						|
cd /root/.homeassistant/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/.homeassistant/restore/data/ /root/.homeassistant
 | 
						|
rm -rf /root/.homeassistant/restore/*
 | 
						|
msg_ok "Restore Complete"
 | 
						|
msg_ok "Starting Home Assistant \n"
 | 
						|
sudo service homeassistant start
 |