ebf1e00846
* curio docker devnet * fix UI, improve init, compose * fix TreeRC * bump FFI
61 lines
1.9 KiB
Bash
Executable File
61 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
echo CURIO_REPO_PATH=$CURIO_REPO_PATH
|
|
echo Wait for lotus is ready ...
|
|
lotus wait-api
|
|
echo Wait for lotus-miner is ready ...
|
|
lotus-miner wait-api
|
|
head=0
|
|
# Loop until the head is greater than 9
|
|
while [[ $head -le 9 ]]; do
|
|
head=$(lotus chain list | awk '{print $1}' | awk -F':' '{print $1}' | tail -1)
|
|
if [[ $head -le 9 ]]; then
|
|
echo "Current head: $head, which is not greater than 9. Waiting..."
|
|
sleep 1 # Wait for 4 seconds before checking again
|
|
else
|
|
echo "The head is now greater than 9: $head"
|
|
fi
|
|
done
|
|
|
|
echo All ready. Lets go
|
|
myip=`nslookup curio | grep -v "#" | grep Address | awk '{print $2}'`
|
|
|
|
if [ ! -f $CURIO_REPO_PATH/.init.curio ]; then
|
|
|
|
if [ ! -f $CURIO_REPO_PATH/.init.setup ]; then
|
|
export DEFAULT_WALLET=`lotus wallet default`
|
|
echo Create a new miner actor ...
|
|
lotus-shed miner create $DEFAULT_WALLET $DEFAULT_WALLET $DEFAULT_WALLET 8MiB
|
|
touch $CURIO_REPO_PATH/.init.setup
|
|
fi
|
|
|
|
if [ ! -f $CURIO_REPO_PATH/.init.config ]; then
|
|
|
|
newminer=`lotus state list-miners | grep -v t01000`
|
|
echo "New Miner is $newminer"
|
|
echo Initiating a new Curio cluster ...
|
|
curio config new-cluster $newminer
|
|
echo Enabling market ...
|
|
curio config get seal | sed -e $'$a\\\n BoostAdapters = ["'"$newminer"':'"$myip"':32100"]' | curio config set --title seal
|
|
touch $CURIO_REPO_PATH/.init.config
|
|
fi
|
|
|
|
echo Starting Curio node to attach storage ...
|
|
curio run --nosync --layers seal,post,gui &
|
|
CURIO_PID=`echo $!`
|
|
until curio cli --machine $myip:12300 wait-api; do
|
|
echo "Waiting for the curio CLI to become ready..."
|
|
sleep 5
|
|
done
|
|
curio cli --machine $myip:12300 storage attach --init --seal --store $CURIO_REPO_PATH
|
|
touch $CURIO_REPO_PATH/.init.curio
|
|
echo Stopping Curio node ...
|
|
echo Try to stop boost...
|
|
kill -15 $CURIO_PID || kill -9 $CURIO_PID
|
|
echo Done
|
|
fi
|
|
|
|
echo Starting curio node ...
|
|
exec curio run --nosync --layers seal,post,gui
|
|
|