-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.boilerplate.centos
73 lines (63 loc) · 1.7 KB
/
init.boilerplate.centos
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
#!/bin/bash
# MYAPP daemon
# chkconfig: 345 20 80
# description: MYAPP DAEMON
# processname: MYAPP
# Source function library. (needed if you use daemon below)
#. /etc/rc.d/init.d/functions
DAEMON_PATH=""
DAEMON="SINGLE-TERM-OR-PATH-HERE"
DAEMONOPTS="ALL OTHER OPTS HERE"
NAME=""
DESC=""
USERNAME=""
PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME
case "$1" in
start)
printf "%-50s" "Starting $NAME..."
cd $DAEMON_PATH
PATH="$PATH:$DAEMON_PATH"
PID=`runuser -c "$DAEMON $DAEMONOPTS" $USERNAME >> /var/log/${NAME}.log 2>&1 & echo $!`
#daemon --user "$USERNAME" --pidfile "$PIDFILE" "$DAEMON $DAEMONOPTS > /var/log/${NAME}.log 2>&1 &"
#echo "Saving PID" $PID " to " $PIDFILE
if [ -z $PID ]; then
printf "%s\n" "Fail"
else
echo $PID > $PIDFILE
printf "%s\n" "Ok"
fi
;;
status)
printf "%-50s" "Checking $NAME..."
if [ -f $PIDFILE ]; then
PID=`cat $PIDFILE`
if [ -z "`ps axf | grep ${PID} | grep -v grep`" ]; then
printf "%s\n" "Process dead but pidfile exists"
else
echo "Running"
fi
else
printf "%s\n" "Service not running"
fi
;;
stop)
printf "%-50s" "Stopping $NAME"
PID=`cat $PIDFILE`
cd $DAEMON_PATH
if [ -f $PIDFILE ]; then
kill $PID
printf "%s\n" "Ok"
rm -f $PIDFILE
else
printf "%s\n" "pidfile not found"
fi
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {status|start|stop|restart}"
exit 1
esac