Compare commits

..

2 Commits

Author SHA1 Message Date
MickLesk
8abcc74b1b fix(fileflows): configure node with localhost server address on install
Remove interactive read prompt; default to http://localhost:19200 so
the node config is populated and the service no longer restart-loops
with 'Configuration not set'.
2026-05-28 07:47:09 +02:00
MickLesk
f97a8642c6 fix(fileflows): ask for server address when installing node
The node was installed without a server address, causing systemd to
restart-loop with 'Configuration not set'. Per the FileFlows docs,
the node requires --server [ADDRESS] to know which server to connect to.

Ask the user for the server address and pass it directly to the
--systemd install call, so the config is written correctly before
the service is started for the first time.
2026-05-28 07:44:09 +02:00
2 changed files with 7 additions and 40 deletions

View File

@@ -31,22 +31,11 @@ function update_script() {
exit
fi
CURRENT=$(cat /opt/fileflows/version 2>/dev/null | tr -d '[:space:]')
# Extract latest version from the Content-Disposition header of the download URL
RELEASE=$(curl -fsI "https://fileflows.com/downloads/zip" 2>/dev/null \
| grep -i "content-disposition" \
| grep -oP '[\d]+\.[\d]+\.[\d]+\.[\d]+' \
| head -1)
if systemctl is-enabled fileflows-node &>/dev/null && ! systemctl is-enabled fileflows &>/dev/null; then
# Node-only installation: no local server API available
if [[ -n "$RELEASE" && "$CURRENT" == "$RELEASE" ]]; then
msg_ok "No update required. ${APP} Node is already at v${CURRENT}"
exit
fi
update_available=$(curl -fsSL -X 'GET' "http://localhost:19200/api/status/update-available" -H 'accept: application/json' | jq .UpdateAvailable)
if [[ "${update_available}" == "true" ]]; then
msg_info "Stopping Service"
systemctl stop fileflows-node
msg_ok "Stopped Service"
systemctl stop fileflows*
msg_info "Stopped Service"
msg_info "Creating Backup"
ls /opt/*.tar.gz &>/dev/null && rm -f /opt/*.tar.gz
@@ -57,32 +46,11 @@ function update_script() {
fetch_and_deploy_from_url "https://fileflows.com/downloads/zip" "/opt/fileflows"
msg_info "Starting Service"
systemctl start fileflows-node
systemctl start fileflows*
msg_ok "Started Service"
msg_ok "Updated successfully!"
else
# Server installation: use the local API
update_available=$(curl -fsSL -X 'GET' "http://localhost:19200/api/status/update-available" -H 'accept: application/json' | jq .UpdateAvailable)
if [[ "${update_available}" == "true" ]]; then
msg_info "Stopping Service"
systemctl 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 start fileflows*
msg_ok "Started Service"
msg_ok "Updated successfully!"
else
msg_ok "No update required. ${APP} is already at latest version"
fi
msg_ok "No update required. ${APP} is already at latest version"
fi
exit

View File

@@ -48,8 +48,7 @@ if [[ "$install_server" =~ ^[Ss]$ ]]; then
else
msg_info "Installing FileFlows Node"
cd /opt/fileflows/Node
$STD dotnet FileFlows.Node.dll
$STD dotnet FileFlows.Node.dll --systemd install --root true
$STD dotnet FileFlows.Node.dll --server "http://localhost:19200" --systemd install --root true
systemctl enable -q --now fileflows-node
msg_ok "Installed FileFlows Node"
fi