-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathkcptun.init
executable file
·135 lines (133 loc) · 3.39 KB
/
kcptun.init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#! /bin/bash
# chkconfig: 2345 55 25
# Description: Startup script for kcptun on Debian. Place in /etc/init.d and
# run 'update-rc.d -f kcptun defaults', or use the appropriate command on your
# distro. For CentOS/Redhat run: 'chkconfig --add kcptun'
#=======================================================
# System Required: CentOS/Debian/Ubuntu (32bit/64bit)
# Description: Manager for KCPTUN
#=======================================================
### BEGIN INIT INFO
# Provides: KCPTUN
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts the kcptun
# Description: starts kcptun using start-stop
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
ProgramName="KCPTUN"
ProgramPath="/usr/local/kcptun"
NAME=kcptun
BIN=${ProgramPath}/${NAME}
CONFIGFILE=${ProgramPath}/config.json
LOGFILE=/var/log/${NAME}.log
SCRIPTNAME=/etc/init.d/${NAME}
PID_DIR=/var/run
PID_FILE=${PID_DIR}/${ProgramName}.pid
version="2.0"
RET_VAL=0
[ -x ${BIN} ] || exit 0
if [ ! -r ${CONFIGFILE} ]; then
echo "config file ${CONFIGFILE} not found"
exit 1
fi
fun_check_run(){
PID=`ps -ef | grep -v grep | grep -i "${BIN}" | awk '{print $2}'`
if [ ! -z $PID ]; then
return 0
else
rm -f ${PID_FILE}
return 1
fi
}
fun_start()
{
log_flag="$1"
if [ ! -d ${PID_DIR} ]; then
mkdir -p ${PID_DIR} || echo "failed creating PID directory ${PID_DIR}"; exit 1
fi
if fun_check_run; then
echo "${ProgramName} (pid $PID) already running."
return 0
fi
if [[ "${log_flag}" =~ ^[Ll][Oo][Gg]$ ]]; then
strLog="${LOGFILE}"
else
strLog="/dev/null"
fi
echo -n "Starting ${ProgramName}..."
if [ -f /root/kcptun.log ]; then rm -rf /root/kcptun.log; fi
${BIN} -c ${CONFIGFILE} > ${strLog} 2>&1 &
sleep 0.3
if ! fun_check_run; then
echo "start failed"
return 1
fi
echo " done"
${BIN} -v
echo "${ProgramName} (pid $PID)is running."
if [[ "${log_flag}" =~ ^[Ll][Oo][Gg]$ ]]; then
echo "read ${LOGFILE} for log"
fi
return 0
}
fun_stop(){
if fun_check_run; then
echo -n "Stoping ${ProgramName} (pid $PID)... "
kill $PID
if [ "$?" != 0 ] ; then
echo " failed"
exit 1
else
echo " done"
rm -f $PID_FILE
fi
else
echo "${ProgramName} is not running."
fi
}
fun_restart(){
local restart_log_flag="$1"
fun_stop
if [[ "${restart_log_flag}" =~ ^[Ll][Oo][Gg]$ ]]; then
fun_start log
else
fun_start
fi
}
fun_status(){
PID=`ps -ef | grep -v grep | grep -i "${BIN}" | awk '{print $2}'`
if [ ! -z $PID ]; then
echo "${ProgramName} (pid $PID) is running..."
else
echo "${ProgramName} is stopped"
exit 0
fi
}
fun_config(){
vi ${CONFIGFILE}
}
fun_virewconfig(){
cat ${CONFIGFILE}
}
fun_version(){
${BIN} -v
}
arg1=$1
arg2=$2
[ -z ${arg1} ]
case "${arg1}" in
start|stop|restart|status|config|viewconfig)
fun_${arg1} ${arg2}
;;
[vV][eE][rR][sS][iI][oO][nN]|-[vV][eE][rR][sS][iI][oO][nN]|--[vV][eE][rR][sS][iI][oO][nN]|-[vV]|--[vV])
fun_version
;;
*)
echo "Usage: $SCRIPTNAME {start|stop|restart|status|config|viewconfig|version}"
RET_VAL=1
;;
esac
exit $RET_VAL