7 Star 7 Fork 4

Neilpang / xunlei

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
thunder 4.48 KB
一键复制 编辑 原始数据 按行查看 历史
neil 提交于 2014-09-20 19:42 . s
#! /bin/sh
### BEGIN INIT INFO
# Provides: thunder
# Required-Start: $local_fs $network
# Required-Stop: $local_fs $network
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start/stop embed thunder manager
#
# Chkconfig: 2345 91 9
# Description: Start/stop embed thunder manager
### END INIT INFO
#
# Author: Pengxuan Men <pengxuan.men@gmail.com>
#
USER=thunder
XWAREPATH=/home/$USER/Xware
RUN=$XWAREPATH/portal
LOG=$XWAREPATH/message.log
PATH=/sbin:/usr/sbin:/bin:/usr/bin
DESC="Embed Thunder Manager"
NAME=thunder
DAEMON=$XWAREPATH/lib/ETMDaemon
DNAME=ETMDaemon
PIDFILE=/var/run/$NAME/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
# Exit if the package is not installed
[ -x "$RUN" ] || exit 5
# Read configuration variable file if it is present
#[ -r /etc/default/$NAME ] && . /etc/default/$NAME
# Define LSB log_* functions. Depend on lsb-base (>= 3.0-6)
. /lib/lsb/init-functions
# start the daemon/service
do_start()
{
# Return
# 0 if daemon has been started
# 1 if daemon was already running
# 2 if daemon could not be started
# start_daemon -p $PIDFILE $DAEMON
# Check if running
if pidofproc -p $PIDFILE "$DAEMON" > /dev/null 2>&1 ; then
return 1
fi
# Mount
mkdir -p /media/thunder
umount -l /media/thunder 2>/dev/null
mkdir -p /home/$USER/Downloads
sudo chown $USER:$USER /home/$USER/Downloads
mount -B /home/$USER/Downloads /media/thunder
# Run
su $USER -c "$RUN" > $LOG 2>/dev/null
# Check result
local LAST=`cat $LOG | tail -n 1`
[ "$LAST" = "finished." ] || return 2
# Check if fail
FAIL=`cat $LOG | tail -n 4 | grep fail`
[ "$FAIL" != "" ] && return 2
# Check ACTIVE CODE
local MSG=""
MSG=`cat $LOG | tail -n 4 | grep "ACTIVE CODE"`
if [ "$MSG" != "" ] ; then
cat $LOG | tail -n 5 | head -n 4 | while read l; do log_warning_msg $l; done
return 2
fi
# Check if bound
MSG=`cat $LOG | tail -n 4 | grep "BOUND TO USER"`
if [ "$MSG" != "" ] ; then
cat $LOG | tail -n 4 | head -n 3 | while read l; do log_warning_msg $l; done
[ -e /var/run/$NAME ] || mkdir /var/run/$NAME
ps aux | grep $DAEMON | grep -v grep | awk '{print $2}' > $PIDFILE
return 0
fi
return 2
}
# stop the daemon/service
do_stop()
{
# Return
# 0 if daemon has been stopped
# 1 if daemon was already stopped
# 2 if daemon could not be stopped
# other if a failure occurred
# killproc -p $PIDFILE $DAEMON
local RET=0
if pidof $DAEMON > /dev/null 2>&1 ; then
if [ -e $PIDFILE ] && pidof $DAEMON | tr ' ' '\n' | grep -w $(cat $PIDFILE) > /dev/null 2>&1 ; then
RET=2
else
RET=1
fi
else
RET=0
fi
# RET is:
# 0 if Deamon (whichever) is not running
# 1 if Deamon (whichever) is running
# 2 if Deamon from the PIDFILE is running
if [ $RET = 0 ] ; then
return 1
elif [ $RET = 2 ] ; then
su $USER -c "$RUN -s" > $LOG 2>/dev/null
local COUNT=`cat $LOG | grep -c stopped`
if [ $COUNT > 0 ] ; then
# remove pidfile if daemon could not delete on exit.
rm -f $PIDFILE
return 0
else
FAIL=`cat $LOG | tail -n 1`
return 2
fi
elif [ $RET = 1 ] ; then
FAIL="There are processes named '$DNAME' running which do not match your pid file which are left untouched in the name of safety, Please review the situation by hand."
return 2
fi
return 2
}
case "$1" in
start)
log_daemon_msg "Starting $DESC $NAME"
do_start
case "$?" in
0|1) log_success_msg ;;
*) log_failure_msg "$FAIL" ;;
esac
;;
stop)
log_daemon_msg "Stopping $DESC $NAME"
do_stop
case "$?" in
0|1) log_success_msg ;;
2) log_failure_msg ;;
esac
;;
restart|force-reload)
log_daemon_msg "Restarting $DESC $NAME"
do_stop
case "$?" in
0|1)
sleep 1
do_start
case "$?" in
0) log_success_msg ;;
1) log_failure_msg ;; # Old process is still running
*) log_failure_msg ;; # Failed to start
esac
;;
*)
# Failed to stop
log_failure_msg
;;
esac
;;
status)
status_of_proc -p $PIDFILE $DAEMON $DNAME && exit 0 || exit $?
;;
*)
log_warning_msg "Usage: $SCRIPTNAME {start|stop|restart|force-reload|status}" >&2
exit 3
;;
esac
:
Shell
1
https://gitee.com/neilpang/xunlei.git
git@gitee.com:neilpang/xunlei.git
neilpang
xunlei
xunlei
master

搜索帮助