Files
ProxmoxVE/ct/actualbudget.sh
T

72 lines
2.4 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-06 09:16:34 +02:00
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://actualbudget.org/ | Github: https://github.com/actualbudget/actual
2025-05-06 09:16:34 +02:00
APP="Actual Budget"
var_tags="${var_tags:-finance}"
var_cpu="${var_cpu:-2}"
var_ram="${var_ram:-2048}"
var_disk="${var_disk:-4}"
var_os="${var_os:-debian}"
2025-10-06 00:11:49 +02:00
var_version="${var_version:-13}"
2026-06-12 00:16:15 +10:00
var_arm64="${var_arm64:-yes}"
var_unprivileged="${var_unprivileged:-1}"
2025-05-06 09:16:34 +02:00
header_info "$APP"
variables
color
catch_errors
function update_script() {
header_info
check_container_storage
check_container_resources
2025-11-30 17:34:14 +01:00
if [[ ! -f ~/.actualbudget && ! -f /opt/actualbudget_version.txt ]]; then
2025-05-06 09:16:34 +02:00
msg_error "No ${APP} Installation Found!"
exit
fi
2025-11-30 17:34:14 +01:00
NODE_VERSION="24" setup_nodejs
2025-11-30 17:34:14 +01:00
RELEASE=$(get_latest_github_release "actualbudget/actual")
2025-05-06 09:16:34 +02:00
if [[ -f /opt/actualbudget-data/config.json ]]; then
2025-11-30 17:34:14 +01:00
if check_for_gh_release "actualbudget" "actualbudget/actual"; then
2025-10-10 11:15:44 +02:00
msg_info "Stopping Service"
2025-05-06 09:16:34 +02:00
systemctl stop actualbudget
2025-10-10 11:15:44 +02:00
msg_ok "Stopped Service"
2025-05-06 09:16:34 +02:00
2025-11-30 17:34:14 +01:00
msg_info "Updating Actual Budget to ${RELEASE}"
$STD npm config set allow-scripts=bcrypt,better-sqlite3,argon2 --location=global
2025-05-06 09:16:34 +02:00
$STD npm update -g @actual-app/sync-server
$STD npm rebuild -g
2025-11-30 17:34:14 +01:00
echo "${RELEASE}" >~/.actualbudget
msg_ok "Updated Actual Budget to ${RELEASE}"
2025-05-06 09:16:34 +02:00
2025-10-10 11:15:44 +02:00
msg_info "Starting Service"
2025-05-06 09:16:34 +02:00
systemctl start actualbudget
2025-10-10 11:15:44 +02:00
msg_ok "Started Service"
msg_ok "Updated successfully!"
2025-05-06 09:16:34 +02:00
fi
else
msg_warn "Old Installation Found, you need to migrate your data and recreate to a new container"
msg_warn "Please follow the instructions on the Actual Budget website to migrate your data"
msg_warn "https://actualbudget.org/docs/backup-restore/backup"
exit
2025-05-06 09:16:34 +02:00
fi
exit
}
start
build_container
description
2026-01-06 22:57:40 +01:00
msg_ok "Completed successfully!\n"
2025-05-06 09:16:34 +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}https://${IP}:5006${CL}"