From 1ed95b791b7cc19818c5565405de2c9e35f7f09a Mon Sep 17 00:00:00 2001 From: Alan Orwick Date: Thu, 7 Sep 2023 13:44:50 -0500 Subject: [PATCH] add no discover in Makefile --- Makefile | 6 +++--- network.env.dist | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index d05198d1f1..52c1062c0c 100644 --- a/Makefile +++ b/Makefile @@ -72,6 +72,9 @@ endif ifeq ($(RUN_BLAKE3),true) BASE_CMD += --consensus.engine "blake3" endif +ifeq ($(NO_DISCOVER),true) + BASE_CMD += --nodiscover +endif # Build suburl strings for slice specific subclient groups # WARNING: Only connect to dom/sub clients over a trusted network. @@ -116,9 +119,6 @@ run-slice: ifeq (,$(wildcard nodelogs)) mkdir nodelogs endif - $(PRIME_CMD) >> $(PRIME_LOG_FILE) 2>&1 & - $(REGION_CMD) >> $(REGION_LOG_FILE) 2>&1 & - $(ZONE_CMD) >> $(ZONE_LOG_FILE) 2>&1 & run-all: ifeq (,$(wildcard nodelogs)) diff --git a/network.env.dist b/network.env.dist index b89b38b5ca..5a5e28950f 100644 --- a/network.env.dist +++ b/network.env.dist @@ -115,6 +115,7 @@ VERBOSITY=4 # Syncmode variable SYNCMODE=full +NO_DISCOVER=false # Stats information QUAI_STATS=false