From de4bbf4711d1ef8fa2a5dfc8c6ea77497fbcfba9 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 12 Jan 2026 17:54:08 +0000 Subject: [PATCH] Apply reconfigure fix to ActualBudget - Added check_service_exists() to ActualBudget - Now shows Skip/Reconfigure/Restart options - Prevents accidental overwrite of existing configurations Progress: 6/24 services complete (Immich, AudioBookshelf, Emby, ARM, FileBrowser, ActualBudget) --- ubuntu-post-install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ubuntu-post-install.sh b/ubuntu-post-install.sh index 773eb0c..894af6a 100644 --- a/ubuntu-post-install.sh +++ b/ubuntu-post-install.sh @@ -3479,7 +3479,9 @@ MM_CONFIG if [ "$INSTALL_ACTUALBUDGET" = "y" ] || [ "$INSTALL_ACTUALBUDGET" = "Y" ]; then AB_DIR="$DOCKER_DIR/actualbudget" + check_service_exists "ActualBudget" "$AB_DIR" AB_RECONFIGURE + if [ "$AB_RECONFIGURE" = "true" ]; then if [ "$DRY_RUN" = true ]; then echo "[DRY-RUN] Would create $AB_DIR" else @@ -3522,7 +3524,8 @@ AB_COMPOSE echo " Data dir: $AB_DIR/data" echo "" fi - fi + fi # End AB_RECONFIGURE check + fi # End INSTALL_ACTUALBUDGET check # ---- KEYCLOAK ---- if [ "$WHIPTAIL_USED" != true ] && [ -z "$INSTALL_KEYCLOAK" ]; then