8 lines
152 B
Bash
8 lines
152 B
Bash
|
if [[ -f /tmp/serverbot.running ]] ; then
|
||
|
exit
|
||
|
fi
|
||
|
touch /tmp/serverbot.running
|
||
|
cd /opt/saturn_cli
|
||
|
python3 serverbot.py
|
||
|
rm -f /tmp/serverbot.running
|