mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-06-16 12:35:30 +08:00
27 lines
391 B
Bash
Executable File
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."
|
|
}
|