mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-18 18:54:03 +00:00
* suggestarr: keep the data where the app actually reads it The env file sets CONFIG_DIR=/opt/suggestarr_data and the service passes it through, but SuggestArr never reads that variable. Its database manager builds the path from the application directory: DB_PATH = os.path.join(BASE_DIR, 'config', 'config_files', 'requests.db') so config.yaml, requests.db and secret.key live under /opt/suggestarr, which the update wipes with CLEAN_INSTALL. Every update came back as a fresh install. Make config/config_files a symlink to /opt/suggestarr_data and lay it down again after each deploy, since the deploy replaces it with a real directory. Existing installs have their files copied across first, with cp -an so anything already in the data directory wins. CONFIG_DIR stays in the env file: it is inert today and costs nothing if upstream starts reading it. * suggestarr: let a failed migration stop the update The || true was wrong and the review caught it. CLEAN_INSTALL wipes /opt/suggestarr right after this copy, so swallowing a failure here means the source is deleted with nothing carried across. The guard was not even doing anything: cp -an exits 0 when it skips a file that already exists in the target, which is the only case that looked like it needed one. It only returns non-zero on a real failure, which is exactly when the update has to stop - and it now stops before the deploy, with the original data still in place. cp -an, target file exists -> exit 0, continues cp -an, source missing -> exit 1, ERR trap, aborts before deploy 2>/dev/null goes as well, so the reason is visible.
84 lines
2.8 KiB
Bash
84 lines
2.8 KiB
Bash
#!/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
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/giuseppe99barchetta/SuggestArr
|
|
|
|
APP="SuggestArr"
|
|
var_tags="${var_tags:-arr;media}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-2048}"
|
|
var_disk="${var_disk:-8}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
#var_arm64="${var_arm64:-no}" # unset = ask the user; set yes/no only when verified
|
|
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/suggestarr ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if check_for_gh_release "suggestarr" "giuseppe99barchetta/SuggestArr"; then
|
|
msg_info "Stopping Service"
|
|
systemctl stop suggestarr
|
|
msg_ok "Stopped Service"
|
|
|
|
mkdir -p /opt/suggestarr_data
|
|
if [[ -d /opt/suggestarr/config/config_files && ! -L /opt/suggestarr/config/config_files ]]; then
|
|
msg_info "Migrating Configuration"
|
|
cp -an /opt/suggestarr/config/config_files/. /opt/suggestarr_data/
|
|
msg_ok "Migrated Configuration to /opt/suggestarr_data"
|
|
fi
|
|
|
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "suggestarr" "giuseppe99barchetta/SuggestArr" "tarball"
|
|
|
|
mkdir -p /opt/suggestarr/config
|
|
rm -rf /opt/suggestarr/config/config_files
|
|
ln -sfn /opt/suggestarr_data /opt/suggestarr/config/config_files
|
|
|
|
msg_info "Building Frontend"
|
|
cd /opt/suggestarr/client
|
|
$STD npm install
|
|
$STD npm run build
|
|
mkdir -p /opt/suggestarr/static
|
|
cp -r /opt/suggestarr/client/dist/* /opt/suggestarr/static/
|
|
cp -r /opt/suggestarr/client/node_modules/swagger-ui-dist /opt/suggestarr/static/swagger-ui
|
|
msg_ok "Built Frontend"
|
|
|
|
msg_info "Updating Python Environment"
|
|
cd /opt/suggestarr
|
|
$STD uv venv --python 3.12 /opt/suggestarr/.venv
|
|
$STD uv pip install --python /opt/suggestarr/.venv -r /opt/suggestarr/api_service/requirements.txt
|
|
msg_ok "Updated Python Environment"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl start suggestarr
|
|
msg_ok "Started Service"
|
|
msg_ok "Updated successfully!"
|
|
fi
|
|
exit
|
|
}
|
|
|
|
start
|
|
build_container
|
|
description
|
|
|
|
msg_ok "Completed Successfully!\n"
|
|
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}:5000${CL}"
|