2021-08-10 14:13:45 +08:00

27 lines
391 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=99
STOP=10
start() {
state=`pgrep -f "/usr/bin/pushbot/pushbot"`
if [ ! -z "$state" ]; then
restart
else
/usr/bin/pushbot/pushbot &
fi
echo "pushbot is starting now ..."
}
stop() {
kill -9 `pgrep -f "/usr/bin/pushbot/pushbot"` 2>/dev/null
echo "pushbot exit ..."
}
restart(){
stop
sleep 1
start
echo "restarted."
}