1
0

Minor script cleanup. (#372)

Former-commit-id: 323ca3b2387e0ac656b901405362298895b8a3e8
This commit is contained in:
Thomas E Lackey 2023-04-26 23:26:50 -05:00 committed by GitHub
parent d8522211f4
commit 03f6d027f9

View File

@ -1,12 +1,21 @@
#!/bin/bash #!/bin/bash
MY_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) # Exports the complete fixturenet-eth ethdb data to a tarball (default, ./ethdb.tgz), waiting for a minimum
# block height (default 1000) to be reached before exporting.
# Usage: export-ethdb.sh [min_block_number=1000] [output_file=./ethdb.tgz]
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
set -x
fi
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
GETH_EXPORT_MIN_BLOCK=${1:-${GETH_EXPORT_MIN_BLOCK:-1000}} GETH_EXPORT_MIN_BLOCK=${1:-${GETH_EXPORT_MIN_BLOCK:-1000}}
# Wait for block. # Wait for block.
${MY_DIR}/status.sh $GETH_EXPORT_MIN_BLOCK ${SCRIPT_DIR}/status.sh $GETH_EXPORT_MIN_BLOCK
if [ $? -ne 0 ]; then if [[ $? -ne 0 ]]; then
echo "Unable to export ethdb." 1>&2 echo "Unable to export ethdb." 1>&2
exit 1 exit 1
fi fi
@ -14,7 +23,7 @@ fi
# Stop geth. # Stop geth.
echo -n "Exporting ethdb.... " echo -n "Exporting ethdb.... "
GETH_CONTAINER=`docker ps -q -f "name=${CERC_SO_COMPOSE_PROJECT}-fixturenet-eth-geth-2-1"` GETH_CONTAINER=`docker ps -q -f "name=${CERC_SO_COMPOSE_PROJECT}-fixturenet-eth-geth-2-1"`
if [ -z "$GETH_CONTAINER" ]; then if [[ -z "$GETH_CONTAINER" ]]; then
echo "not found" echo "not found"
exit 1 exit 1
fi fi