forked from TrueCloudLab/frostfs-dev-env
[#18] Makefile: Split long for
line
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
976f16803d
commit
db0ebb7349
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -76,7 +76,11 @@ up/bootstrap: get vendor/hosts
|
||||||
@$(foreach SVC, $(START_BOOTSTRAP), $(shell docker-compose -f services/$(SVC)/docker-compose.yml up -d))
|
@$(foreach SVC, $(START_BOOTSTRAP), $(shell docker-compose -f services/$(SVC)/docker-compose.yml up -d))
|
||||||
@source ./bin/helper.sh
|
@source ./bin/helper.sh
|
||||||
@./vendor/frostfs-adm --config frostfs-adm.yml morph init --contracts vendor/contracts || die "Failed to initialize Alphabet wallets"
|
@./vendor/frostfs-adm --config frostfs-adm.yml morph init --contracts vendor/contracts || die "Failed to initialize Alphabet wallets"
|
||||||
@for f in ./services/storage/wallet*.json; do echo "Transfer GAS to wallet $${f}" && ./vendor/frostfs-adm -c frostfs-adm.yml morph refill-gas --storage-wallet $${f} --gas 10.0 || die "Failed to transfer GAS to alphabet wallets"; done
|
@for f in ./services/storage/wallet*.json; do \
|
||||||
|
echo "Transfer GAS to wallet $${f}" \
|
||||||
|
&& ./vendor/frostfs-adm -c frostfs-adm.yml morph refill-gas --storage-wallet $${f} --gas 10.0 \
|
||||||
|
|| die "Failed to transfer GAS to alphabet wallets"; \
|
||||||
|
done
|
||||||
@echo "FrostFS sidechain environment is deployed"
|
@echo "FrostFS sidechain environment is deployed"
|
||||||
|
|
||||||
# Build up certain service
|
# Build up certain service
|
||||||
|
|
Loading…
Reference in a new issue