2021-03-19 15:19:40 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
2021-03-29 15:27:53 +02:00
|
|
|
if [[ $((RUN_MASK & 1)) -eq 1 ]]
|
2021-03-19 15:19:40 +01:00
|
|
|
then
|
2021-03-29 15:27:53 +02:00
|
|
|
./reset.sh
|
|
|
|
if [ $? -ne "0" ]; then
|
|
|
|
exit 1;
|
|
|
|
fi
|
2021-03-19 15:19:40 +01:00
|
|
|
fi
|
|
|
|
|
2021-03-29 15:27:53 +02:00
|
|
|
if [[ $((RUN_MASK & 2)) -eq 2 ]]
|
2021-03-19 15:19:40 +01:00
|
|
|
then
|
2021-03-29 15:27:53 +02:00
|
|
|
./seed_cic_eth.sh
|
|
|
|
fi
|