Subversion Repositories SmartDukaan

Rev

Rev 3905 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3905 chandransh 1
#! /bin/sh
2
### BEGIN INIT INFO
3
# Provides:          content_server
4
# Required-Start:    $network $config_server
5
# Required-Stop:     $network $config_server
6
# Default-Start:     2 3 4 5
7
# Default-Stop:      0 1 6
8
# Short-Description: Example initscript
9
# Description:       This file should be used to start the configuraiton server.
10
### END INIT INFO
11
 
12
# Author: Chandranshu <chandranshu.s@shop2020.in>
13
#
14
 
15
# Do NOT "set -e"
16
 
17
# PATH should only include /usr/* if it runs after the mountnfs.sh script
18
PATH=/sbin:/usr/sbin:/bin:/usr/bin
4700 phani.kuma 19
PROJECT_DIR="/usr/local/lib/python2.6/dist-packages/PyProj-0.1-py2.6.egg"
20
export PYTHONPATH=${PROJECT_DIR}:/usr/lib/pymodules/python2.6:/usr/lib/pymodules/python2.6/gtk-2.0:/usr/lib/python2.6:/usr/lib/python2.6/dist-packages:/usr/lib/python2.6/dist-packages/PIL:/usr/lib/python2.6/dist-packages/gst-0.10:/usr/lib/python2.6/dist-packages/gtk-2.0:/usr/lib/python2.6/lib-dynload:/usr/lib/python2.6/lib-old:/usr/lib/python2.6/lib-tk:/usr/lib/python2.6/plat-linux2:/usr/local/lib/python2.6/dist-packages:/usr/local/lib/python2.6/dist-packages/Elixir-0.7.1-py2.6.egg:/usr/local/lib/python2.6/dist-packages/TracXMLRPC-0.1-py2.6.egg:/usr/local/lib/python2.6/dist-packages/tornado-1.0.1-py2.6.egg
3905 chandransh 21
DESC="Content server used by the catalog dashboard"
22
NAME="content-server"
23
PIDFILE=/var/run/$NAME.pid
24
DAEMON=/usr/bin/python2.6
25
SCRIPTNAME=/etc/init.d/$NAME
26
 
27
# Exit if the package is not installed
28
[ -x "$DAEMON" ] || exit 0
29
 
30
# Read configuration variable file if it is present
31
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
32
 
33
# Load the VERBOSE setting and other rcS variables
34
. /lib/init/vars.sh
35
 
36
# Define LSB log_* functions.
37
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
38
. /lib/lsb/init-functions
39
 
40
#
41
# Function that starts the daemon/service
42
#
43
do_start()
44
{
45
	# Return
46
	#   0 if daemon has been started
47
	#   1 if daemon was already running
48
	#   2 if daemon could not be started
4700 phani.kuma 49
        $DAEMON -u ${PROJECT_DIR}/shop2020/content/main/ContentServer.py -l /var/log/services/content.log -i $PIDFILE start 
3905 chandransh 50
	# Add code here, if necessary, that waits for the process to be ready
51
	# to handle requests from services started subsequently which depend
52
	# on this one.  As a last resort, sleep for some time.
53
}
54
 
55
#
56
# Function that stops the daemon/service
57
#
58
do_stop()
59
{
60
	# Return
61
	#   0 if daemon has been stopped
62
	#   1 if daemon was already stopped
63
	#   2 if daemon could not be stopped
64
	#   other if a failure occurred
4700 phani.kuma 65
        $DAEMON -u ${PROJECT_DIR}/shop2020/content/main/ContentServer.py -l /var/log/services/content.log -i $PIDFILE stop
3905 chandransh 66
	RETVAL="$?"
67
	[ "$RETVAL" = 1 ] && return 2
68
	# Wait for children to finish too if this is a daemon that forks
69
	# and if the daemon is only ever run from this initscript.
70
	# If the above conditions are not satisfied then add some other code
71
	# that waits for the process to drop all resources that could be
72
	# needed by services started subsequently.  A last resort is to
73
	# sleep for some time.
74
	#start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
75
	#[ "$?" = 2 ] && return 2
76
	# Many daemons don't delete their pidfiles when they exit.
77
	rm -f $PIDFILE
78
	return "$RETVAL"
79
}
80
 
81
#
82
# Function that sends a SIGHUP to the daemon/service
83
#
84
do_reload() {
85
	#
86
	# If the daemon can reload its configuration without
87
	# restarting (for example, when it is sent a SIGHUP),
88
	# then implement that here.
89
	#
90
	#start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
91
	return 0
92
}
93
 
94
case "$1" in
95
  start)
96
	[ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
97
	do_start
98
	case "$?" in
99
		0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
100
		2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
101
	esac
102
	;;
103
  stop)
104
	[ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
105
	do_stop
106
	case "$?" in
107
		0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
108
		2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
109
	esac
110
	;;
111
  status)
112
       status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
113
       ;;
114
  #reload|force-reload)
115
	#
116
	# If do_reload() is not implemented then leave this commented out
117
	# and leave 'force-reload' as an alias for 'restart'.
118
	#
119
	#log_daemon_msg "Reloading $DESC" "$NAME"
120
	#do_reload
121
	#log_end_msg $?
122
	#;;
123
  restart|force-reload)
124
	#
125
	# If the "reload" option is implemented then remove the
126
	# 'force-reload' alias
127
	#
128
	log_daemon_msg "Restarting $DESC" "$NAME"
129
	do_stop
130
	case "$?" in
131
	  0|1)
132
		do_start
133
		case "$?" in
134
			0) log_end_msg 0 ;;
135
			1) log_end_msg 1 ;; # Old process is still running
136
			*) log_end_msg 1 ;; # Failed to start
137
		esac
138
		;;
139
	  *)
140
	  	# Failed to stop
141
		log_end_msg 1
142
		;;
143
	esac
144
	;;
145
  *)
146
	#echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
147
	echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
148
	exit 3
149
	;;
150
esac
151
 
152
: