11 lines
251 B
Bash
11 lines
251 B
Bash
#!/bin/bash
|
|
|
|
while true; do
|
|
PYTHONPATH="/root/sia:$PYTHONPATH" python3 -m sia
|
|
if [ $? -eq 42 ]; then
|
|
echo "SIA exited with code 42. Restarting."
|
|
else
|
|
echo "SIA exited with code $?. Not restarting."
|
|
break
|
|
fi
|
|
done |