mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-15 16:18:58 +00:00
25 lines
279 B
Bash
Executable file
25 lines
279 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SHUTDOWN=0
|
|
RESTART=1
|
|
|
|
INSTRUMENTATION=10
|
|
|
|
jar=NurseBot.jar
|
|
|
|
while true; do
|
|
java -jar $jar
|
|
ec=$?
|
|
|
|
case $ec in
|
|
$SHUTDOWN)
|
|
echo "Got shutdown."
|
|
break;;
|
|
$RESTART)
|
|
echo "Restart."
|
|
continue;;
|
|
*)
|
|
echo "This should not happen!"
|
|
break;;
|
|
esac
|
|
done
|