From f97a8642c626ad2e46f4a1c3530429e48aebbe1b Mon Sep 17 00:00:00 2001 From: MickLesk Date: Thu, 28 May 2026 07:44:09 +0200 Subject: [PATCH] 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. --- install/fileflows-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/fileflows-install.sh b/install/fileflows-install.sh index b7b2aceef..dbd863da5 100644 --- a/install/fileflows-install.sh +++ b/install/fileflows-install.sh @@ -46,10 +46,10 @@ if [[ "$install_server" =~ ^[Ss]$ ]]; then systemctl enable -q --now fileflows msg_ok "Installed FileFlows Server" else + read -r -p "${TAB3}Enter the FileFlows Server address (e.g. http://192.168.1.10:19200): " server_address 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 "$server_address" --systemd install --root true systemctl enable -q --now fileflows-node msg_ok "Installed FileFlows Node" fi