2020-03-23 18:05:39 +00:00
|
|
|
#!/bin/sh
|
2020-05-01 15:49:07 +00:00
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
echo "Beginning the ipld-eth-server process"
|
2020-03-25 20:14:48 +00:00
|
|
|
|
2020-09-06 09:32:11 +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
|
2020-09-06 09:32:11 +00:00
|
|
|
echo "ipld-eth-server startup failed"
|
2020-03-23 18:05:39 +00:00
|
|
|
exit 1
|
|
|
|
fi
|