From 276dc523e947d3fd8060ac344285461d8efe79e1 Mon Sep 17 00:00:00 2001 From: Vladimir Domnich Date: Thu, 14 Jul 2022 23:23:44 +0400 Subject: [PATCH] Adjust path to wallets in neofs-adm config when preparing configuration. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1a98367..605410c 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ setup-for-sbercloud: cp -r $(CONFIG_DIR)/alphabet-wallets $(SETUP_DIR) cp -r $(CONFIG_DIR)/wallets $(SETUP_DIR) # Copy neofs-adm config to setup directory (and adjust path to wallets) - cat $(CONFIG_DIR)/config.yaml | sed "s|alphabet-wallets:.*|alphabet-wallets: /.setup/alphabet-wallets|" > $(SETUP_DIR)/config.yaml + cat $(CONFIG_DIR)/config.yaml | sed "s|alphabet-wallets:.*|alphabet-wallets: $(SETUP_DIR)/alphabet-wallets|" > $(SETUP_DIR)/config.yaml # Generate .env file (NEO_MAINNET_ENDPOINT might be incorrect, but we don't use it) echo NEO_MAINNET_ENDPOINT=http://$(NODE1):40333 > $(CURDIR)/.env echo MORPH_ENDPOINT=http://$(NODE1):40332 >> $(CURDIR)/.env