2021-03-23 17:15:27 +01:00
|
|
|
#! /bin/bash
|
|
|
|
|
2021-03-25 09:34:57 +01:00
|
|
|
if [[ $((RUN_MASK & 1)) -eq 1 ]]
|
2021-03-23 17:15:27 +01:00
|
|
|
then
|
2021-03-29 09:55:57 +02:00
|
|
|
./reset.sh
|
|
|
|
if [ $? -ne "0" ]; then
|
|
|
|
exit 1;
|
|
|
|
fi
|
2021-03-23 17:15:27 +01:00
|
|
|
fi
|
|
|
|
|
2021-03-25 09:34:57 +01:00
|
|
|
if [[ $((RUN_MASK & 2)) -eq 2 ]]
|
2021-03-23 17:15:27 +01:00
|
|
|
then
|
2021-03-29 09:55:57 +02:00
|
|
|
./seed_cic_eth.sh
|
2021-03-24 19:51:01 +01:00
|
|
|
fi
|