mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-04 22:59:36 +02:00
Server installs check update-available without curl -f so 401 is handled with a clear message instead of aborting via catch_errors. Node installs skip the API and always run the zip update. Fixes #14622 Co-authored-by: Cursor <cursoragent@cursor.com>
78 lines
2.3 KiB
Bash
78 lines
2.3 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: kkroboth
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://fileflows.com/
|
|
|
|
APP="FileFlows"
|
|
var_tags="${var_tags:-media;automation}"
|
|
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}"
|
|
var_unprivileged="${var_unprivileged:-1}"
|
|
var_gpu="${var_gpu:-yes}"
|
|
|
|
header_info "$APP"
|
|
variables
|
|
color
|
|
catch_errors
|
|
|
|
function update_script() {
|
|
header_info
|
|
check_container_storage
|
|
check_container_resources
|
|
|
|
if [[ ! -d /opt/fileflows ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if systemctl list-unit-files 'fileflows.service' --no-legend 2>/dev/null | grep -q '^fileflows\.service'; then
|
|
tmp=$(mktemp)
|
|
http_code=$(curl -sSL -X 'GET' "http://localhost:19200/api/status/update-available" -H 'accept: application/json' -o "$tmp" -w '%{http_code}' 2>/dev/null) || http_code="000"
|
|
if [[ "$http_code" == "401" ]]; then
|
|
rm -f "$tmp"
|
|
msg_error "Could not check for updates: API returned 401. Disable security in FileFlows."
|
|
exit
|
|
fi
|
|
update_available=$(jq -r '.UpdateAvailable // false' "$tmp" 2>/dev/null)
|
|
rm -f "$tmp"
|
|
if [[ "${update_available}" != "true" ]]; then
|
|
msg_ok "No update required. ${APP} is already at latest version"
|
|
exit
|
|
fi
|
|
fi
|
|
|
|
msg_info "Stopping Service"
|
|
systemctl --all stop 'fileflows*'
|
|
msg_ok "Stopped Service"
|
|
|
|
msg_info "Creating Backup"
|
|
ls /opt/*.tar.gz &>/dev/null && rm -f /opt/*.tar.gz
|
|
backup_filename="/opt/${APP}_backup_$(date +%F).tar.gz"
|
|
tar -czf "$backup_filename" -C /opt/fileflows Data
|
|
msg_ok "Backup Created"
|
|
|
|
fetch_and_deploy_from_url "https://fileflows.com/downloads/zip" "/opt/fileflows"
|
|
|
|
msg_info "Starting Service"
|
|
systemctl --all start 'fileflows*'
|
|
msg_ok "Started Service"
|
|
msg_ok "Updated successfully!"
|
|
|
|
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 "${TAB}${GATEWAY}${BGN}http://${IP}:19200${CL}"
|