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