2025-11-02 23:49:54 -08:00
|
|
|
#!/usr/bin/env bash
|
2026-09-02 11:40:00 +02:00
|
|
|
_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")
|
2026-01-06 13:28:12 +01:00
|
|
|
# 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
|
2026-02-24 15:11:53 +01:00
|
|
|
# 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}"
|
2026-06-19 17:53:08 +10:00
|
|
|
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
|
|
|
|
2026-06-19 17:53:08 +10: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"
|
2025-10-30 09:24:16 -07:00
|
|
|
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}"
|
2026-06-03 11:03:13 +02:00
|
|
|
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
|
|
|
|
|
echo -e "${GATEWAY}${BGN}http://${IP}:9898${CL}"
|