diff --git a/restartcloudbot.sh b/restartcloudbot.sh index a2f7e1e..25f2324 100755 --- a/restartcloudbot.sh +++ b/restartcloudbot.sh @@ -2,18 +2,6 @@ cd $(dirname $0) ( -PIDS="" -for i in $(ps -awx | grep -i [c]loudbot | sed "s/^\s*//" | cut -d" " -f1); do - if [ $i != $$ ]; then - PIDS="$i $PIDS" - fi -done -if [ ! -z "$PIDS" ]; then - kill $PIDS - sleep 10 - kill -9 $PIDS >/dev/null 2>&1 -fi - while true do sudo -u cloudbot ./cloudbot.py 2>&1 | logger -s -t $(basename $0)