chainsaw massacre
This commit is contained in:
16
linea/scripts/entrypoint.erigon.sh
Executable file
16
linea/scripts/entrypoint.erigon.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
# exit script on any error
|
||||
set -e
|
||||
|
||||
ERIGON_HOME=/root/.local/share/erigon
|
||||
|
||||
if [ ! -f "${ERIGON_HOME}/bootstrapped" ];
|
||||
then
|
||||
echo "write the custom genesis block"
|
||||
mkdir -p ${ERIGON_HOME:-/root/.local/share/erigon}
|
||||
erigon init --datadir ${ERIGON_HOME:-/root/.local/share/erigon} /configs/mainnet/shared/genesis.json
|
||||
touch "${ERIGON_HOME}/bootstrapped"
|
||||
fi
|
||||
|
||||
exec erigon $@
|
||||
Reference in New Issue
Block a user