ipld-eth-server/entrypoint.sh

12 lines
259 B
Bash
Raw Normal View History

2020-03-23 18:05:39 +00:00
#!/bin/sh
2020-05-01 15:49:07 +00:00
echo "Beginning the ipld-eth-server process"
2020-03-25 20:14:48 +00:00
echo running: ./ipld-eth-server ${VDB_COMMAND} --config=config.toml
./ipld-eth-server ${VDB_COMMAND} --config=config.toml
2020-03-23 18:05:39 +00:00
rv=$?
if [ $rv != 0 ]; then
echo "ipld-eth-server startup failed"
2020-03-23 18:05:39 +00:00
exit 1
fi