-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstart.sh
executable file
·41 lines (36 loc) · 1.19 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/bash
# init faucet account
HOME=~/.irislcd
rm -rf $HOME
echo -e "$PASSWORD\n$SEED" | iriscli keys add $NAME --recover --home=$HOME
# Start the first process
irislcd start --trust-node=true --node $NODE --home=$HOME &
status=$?
if [ $status -ne 0 ]; then
echo "Failed to start iris rest: $status"
exit $status
fi
# Start the second process
sleep 5s && python3 main.py
status=$?
if [ $status -ne 0 ]; then
echo "Failed to start faucet: $status"
exit $status
fi
# Naive check runs checks once a minute to see if either of the processes exited.
# This illustrates part of the heavy lifting you need to do if you want to run
# more than one service in a container. The container exits with an error
# if it detects that either of the processes has exited.
# Otherwise it loops forever, waking up every 60 seconds
while sleep 60; do
ps aux |grep iriscli |grep -q -v grep
iris_rest_status=$?
ps aux |grep python3 |grep -q -v grep
faucet_status=$?
# If the greps above find anything, they exit with 0 status
# If they are not both 0, then something is wrong
if [ iris_rest_status -ne 0 -o faucet_status -ne 0 ]; then
echo "One of the processes has already exited."
exit 1
fi
done