From 946e2568bbdf1c7e8d9a685a4fc0cb584fc4850d Mon Sep 17 00:00:00 2001 From: johnysigma Date: Mon, 4 Aug 2025 16:54:52 +0300 Subject: [PATCH] Fix ExecStart command in systemd service to use NODE_PORT instead of BOOTSTRAP_PORT - Update service creation to use NODE_PORT instead of undefined BOOTSTRAP_PORT - This fixes the service startup failure where the wrong port variable was referenced - Service command now correctly uses: /opt/debros/bin/node -data /opt/debros/data/node -port 4001 --- scripts/install-debros-network.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-debros-network.sh b/scripts/install-debros-network.sh index 1d4515b..1066bea 100755 --- a/scripts/install-debros-network.sh +++ b/scripts/install-debros-network.sh @@ -693,7 +693,7 @@ create_systemd_service() { # Determine the correct ExecStart command based on node type local exec_start="" -exec_start="$INSTALL_DIR/bin/node -data $INSTALL_DIR/data/node -port $BOOTSTRAP_PORT" +exec_start="$INSTALL_DIR/bin/node -data $INSTALL_DIR/data/node -port $NODE_PORT" cat > /tmp/debros-$NODE_TYPE.service << EOF [Unit]