From 595fc24c568d7acbc9ff73d4e9c94d866fd12282 Mon Sep 17 00:00:00 2001 From: Zach Ramsay Date: Fri, 18 May 2018 13:22:04 -0400 Subject: [PATCH] remove very old bash file --- Makefile | 2 +- test/docker/update.sh | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 test/docker/update.sh diff --git a/Makefile b/Makefile index 05d1889f..60a81fe3 100755 --- a/Makefile +++ b/Makefile @@ -212,7 +212,7 @@ sentry-start: cd networks/remote/terraform && terraform init && terraform apply -var DO_API_TOKEN="$(DO_API_TOKEN)" -var SSH_KEY_FILE="$(HOME)/.ssh/id_rsa.pub" @if ! [ -f $(CURDIR)/build/node0/config/genesis.json ]; then docker run --rm -v $(CURDIR)/build:/tendermint:Z tendermint/localnode testnet --v 0 --n 4 --o . ; fi cd networks/remote/ansible && ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -i inventory/digital_ocean.py -l sentrynet install.yml - @echo "Next step: Add your validator setup in the genesis.json and config.tml files and run \"make server-config\". (Public key of validator, chain ID, peer IP and node ID.)" + @echo "Next step: Add your validator setup in the genesis.json and config.tml files and run \"make sentry-config\". (Public key of validator, chain ID, peer IP and node ID.)" # Configuration management sentry-config: diff --git a/test/docker/update.sh b/test/docker/update.sh deleted file mode 100644 index b946bf39..00000000 --- a/test/docker/update.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash - -# update the `tester` image by copying in the latest tendermint binary - -docker run --name builder tester true -docker cp $GOPATH/bin/tendermint builder:/go/bin/tendermint -docker commit builder tester -docker rm -vf builder -