mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
957 B
46 lines
957 B
#!/bin/sh
|
|
# chkconfig: 2345 55 25
|
|
# description: SimplePing Service
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: SimplePing
|
|
# Required-Start: $all
|
|
# Required-Stop: $all
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: starts SimplePing
|
|
# Description: starts the MDW-Web
|
|
### END INIT INFO
|
|
|
|
# Simple SimplePing init.d script conceived to work on Linux systems
|
|
# as it does use of the /proc filesystem.
|
|
|
|
app_start(){
|
|
echo "Starting SimplePing server..."
|
|
cd {$SERVER_PATH}/simpleping
|
|
./simpleping service >> {$SERVER_PATH}/simpleping/logs.pl 2>&1 &
|
|
}
|
|
|
|
app_stop(){
|
|
echo "SimplePing stopped"
|
|
ps -ef| grep simpleping | grep -v grep | grep -v python | grep -v sh | awk '{print $2}'| xargs kill
|
|
}
|
|
|
|
|
|
case "$1" in
|
|
start)
|
|
app_start
|
|
;;
|
|
stop)
|
|
app_stop
|
|
;;
|
|
restart|reload)
|
|
app_stop
|
|
sleep 0.3
|
|
app_start
|
|
;;
|
|
*)
|
|
echo "Please use start or stop as first argument"
|
|
;;
|
|
esac
|
|
|
|
|