Files
ProxmoxVE/ct/backrest.sh
T

57 lines
1.8 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func")
# Copyright (c) 2021-2026 community-scripts ORG
2025-05-27 17:21:07 +02:00
# Author: ksad (enirys31)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://garethgeorge.github.io/backrest/ | Github: https://github.com/garethgeorge/backrest
2025-05-27 17:21:07 +02:00
APP="Backrest"
var_tags="${var_tags:-backup}"
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-512}"
var_disk="${var_disk:-8}"
var_os="${var_os:-debian}"
2026-01-13 08:10:06 +01:00
var_version="${var_version:-13}"
var_arm64="${var_arm64:-yes}"
2025-05-27 17:21:07 +02:00
var_unprivileged="${var_unprivileged:-1}"
header_info "$APP"
variables
color
catch_errors
function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -d /opt/backrest ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
2025-12-21 21:46:17 +01:00
if check_for_gh_release "backrest" "garethgeorge/backrest"; then
2025-10-10 11:15:44 +02:00
msg_info "Stopping Service"
2025-05-27 17:21:07 +02:00
systemctl stop backrest
2025-10-10 11:15:44 +02:00
msg_ok "Stopped Service"
2025-05-27 17:21:07 +02:00
fetch_and_deploy_gh_release "backrest" "garethgeorge/backrest" "prebuild" "latest" "/opt/backrest/bin" "backrest_Linux_$(arch_resolve "x86_64" "arm64").tar.gz"
2025-05-27 17:21:07 +02:00
2025-10-10 11:15:44 +02:00
msg_info "Starting Service"
2025-05-27 17:21:07 +02:00
systemctl start backrest
2025-10-10 11:15:44 +02:00
msg_ok "Started Service"
msg_ok "Updated successfully!"
2025-05-27 17:21:07 +02:00
fi
exit
}
start
build_container
description
2026-01-06 22:57:40 +01:00
msg_ok "Completed successfully!\n"
2025-05-27 17:21:07 +02:00
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
echo -e "${GATEWAY}${BGN}http://${IP}:9898${CL}"