From 8abcc74b1b40328bef295b3ed978155a38318216 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Thu, 28 May 2026 07:47:09 +0200 Subject: [PATCH] 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'. --- install/fileflows-install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install/fileflows-install.sh b/install/fileflows-install.sh index dbd863da5..3d12fdc1e 100644 --- a/install/fileflows-install.sh +++ b/install/fileflows-install.sh @@ -46,10 +46,9 @@ 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 --server "$server_address" --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