* core: add progress; fix exit status Introduce post_progress_to_api() in alpine-install.func and install.func to send a lightweight, fire-and-forget telemetry ping (HTTP POST) that updates an existing telemetry record to "configuring" when DIAGNOSTICS=yes and RANDOM_UUID is set. The function is non-blocking (curl -m 5, errors ignored) and is invoked during container setup and after OS updates to signal active progress. Also adjust api_exit_script() in build.func to report success (post_update_to_api "done" "0") for cases where the script exited normally but a completion status wasn't posted, instead of reporting failure. * Safer tools.func load and improved error handling Replace process-substitution sourcing of tools.func with an explicit curl -> variable -> source via /dev/stdin, adding failure messages and a check that expected functions (e.g. fetch_and_deploy_gh_release) are present (misc/alpine-install.func, misc/install.func). Add categorize_error mapping for exit code 10 -> "config" (misc/api.func). Tweak build.func: minor pipeline formatting and change the ERR trap to capture the actual exit code and only call ensure_log_on_host/post_update on non-zero exits, preventing erroneous failure reporting. * tools: add data init and auto-reporting to tools and pve section Introduce telemetry helpers in misc/api.func: _telemetry_report_exit (reports success/failure via post_tool_to_api/post_addon_to_api) and init_tool_telemetry (reads DIAGNOSTICS, starts install timer and installs an EXIT trap to auto-report). Integrate telemetry into many tools/addon and tools/pve scripts by sourcing the remote api.func and calling init_tool_telemetry (guarded with declare -f). Also apply a minor arithmetic formatting tweak in misc/build.func for RECOVERY_ATTEMPT.
94 lines
2.9 KiB
Bash
94 lines
2.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 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 Container"
|
|
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
|
|
|
|
# Telemetry
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/api.func) 2>/dev/null || true
|
|
declare -f init_tool_telemetry &>/dev/null && init_tool_telemetry "container-restore" "tool"
|
|
|
|
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 /var/lib/docker/volumes/hass_config/_data/backups/)" ]; then
|
|
msg_error "No backups found! \n"
|
|
exit 1
|
|
fi
|
|
DIR=/var/lib/docker/volumes/hass_config/_data/restore
|
|
if [ -d "$DIR" ]; then
|
|
msg_ok "Restore Directory Exists."
|
|
else
|
|
mkdir -p /var/lib/docker/volumes/hass_config/_data/restore
|
|
msg_ok "Created Restore Directory."
|
|
fi
|
|
cd /var/lib/docker/volumes/hass_config/_data/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"
|
|
docker stop homeassistant &>/dev/null
|
|
msg_ok "Stopped Home Assistant"
|
|
msg_info "Restoring Home Assistant using ${filename}"
|
|
tar xvf ${filename} -C /var/lib/docker/volumes/hass_config/_data/restore &>/dev/null
|
|
cd /var/lib/docker/volumes/hass_config/_data/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 /var/lib/docker/volumes/hass_config/_data/restore/data/ /var/lib/docker/volumes/hass_config/_data
|
|
rm -rf /var/lib/docker/volumes/hass_config/_data/restore/*
|
|
msg_ok "Restore Complete"
|
|
msg_ok "Starting Home Assistant \n"
|
|
docker start homeassistant
|