Projet

Général

Profil

Télécharger (4,12 ko) Statistiques
| Branche: | Tag: | Révision:

root / debian / wcsinstd.init @ 1e18e58f

1
#!/bin/sh
2
### BEGIN INIT INFO
3
# Provides:          wcsinstd
4
# Required-Start:    $network $local_fs
5
# Required-Stop:
6
# Default-Start:     2 3 4 5
7
# Default-Stop:      0 1 6
8
# Short-Description: Remote w.c.s. instances management daemon
9
# Description:       wcsinstd allows to create, update and delete w.c.s. instances through a REST API
10
### END INIT INFO
11

    
12
# Author: Jérôme Schneider <jschneider@entrouvert.com>
13

    
14
PATH=/sbin:/usr/sbin:/bin:/usr/bin
15
DESC=wcsinstd
16
NAME=wcsinstd
17
DAEMON=/usr/bin/gunicorn
18
PIDFILE=/var/run/$NAME/$NAME.pid
19
LOG_DIR=/var/log/$NAME
20
SCRIPTNAME=/etc/init.d/$NAME
21

    
22
USER=wcs-au-quotidien
23
GROUP=wcs-au-quotidien
24

    
25
DAEMON_ARGS="--pid $PIDFILE \
26
--user $USER --group $GROUP \
27
--daemon \
28
--access-logfile $LOG_DIR/gunicorn-access.log \
29
--log-file $LOG_DIR/gunicorn-error.log \
30
--bind=127.0.0.1:8092 \
31
--workers=1 \
32
--worker-class=sync \
33
--timeout=60 \
34
debian_wsgi:application"
35

    
36
export PYTHONPATH=/usr/lib/$NAME
37

    
38
# Exit if the package is not installed
39
[ -x $DAEMON ] || exit 0
40

    
41
# Read configuration variable file if it is present
42
[ -r /etc/default/$NAME ] && . /etc/default/$NAME
43

    
44
# Load the VERBOSE setting and other rcS variables
45
. /lib/init/vars.sh
46

    
47
# Define LSB log_* functions.
48
# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
49
. /lib/lsb/init-functions
50

    
51
#
52
# Function that starts the daemon/service
53
#
54
do_start()
55
{
56
	# Return
57
	#   0 if daemon has been started
58
	#   1 if daemon was already running
59
	#   2 if daemon could not be started
60
	start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
61
		|| return 1
62
	start-stop-daemon --start --quiet --exec $DAEMON -- \
63
		$DAEMON_ARGS \
64
		|| return 2
65
}
66

    
67
#
68
# Function that stops the daemon/service
69
#
70
do_stop()
71
{
72
	# Return
73
	#   0 if daemon has been stopped
74
	#   1 if daemon was already stopped
75
	#   2 if daemon could not be stopped
76
	#   other if a failure occurred
77
	start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE
78
	RETVAL="$?"
79
	[ "$RETVAL" = 2 ] && return 2
80
	# Wait for children to finish too if this is a daemon that forks
81
	# and if the daemon is only ever run from this initscript.
82
	# If the above conditions are not satisfied then add some other code
83
	# that waits for the process to drop all resources that could be
84
	# needed by services started subsequently.  A last resort is to
85
	# sleep for some time.
86
	start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
87
	[ "$?" = 2 ] && return 2
88
	# Many daemons don't delete their pidfiles when they exit.
89
	rm -f $PIDFILE
90
	return "$RETVAL"
91
}
92

    
93
#
94
# Function that sends a SIGHUP to the daemon/service
95
#
96
do_reload() {
97
	#
98
	# If the daemon can reload its configuration without
99
	# restarting (for example, when it is sent a SIGHUP),
100
	# then implement that here.
101
	#
102
	start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
103
	return 0
104
}
105

    
106
case "$1" in
107
  start)
108
    log_daemon_msg "Starting $DESC " "$NAME"
109
    do_start
110
    case "$?" in
111
		0|1) log_end_msg 0 ;;
112
		2) log_end_msg 1 ;;
113
	esac
114
  ;;
115
  stop)
116
	log_daemon_msg "Stopping $DESC" "$NAME"
117
	do_stop
118
	case "$?" in
119
		0|1) log_end_msg 0 ;;
120
		2) log_end_msg 1 ;;
121
	esac
122
	;;
123
  status)
124
       status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
125
       ;;
126
  #reload|force-reload)
127
	#
128
	# If do_reload() is not implemented then leave this commented out
129
	# and leave 'force-reload' as an alias for 'restart'.
130
	#
131
	#log_daemon_msg "Reloading $DESC" "$NAME"
132
	#do_reload
133
	#log_end_msg $?
134
	#;;
135
  restart|force-reload)
136
	#
137
	# If the "reload" option is implemented then remove the
138
	# 'force-reload' alias
139
	#
140
	log_daemon_msg "Restarting $DESC" "$NAME"
141
	do_stop
142
	case "$?" in
143
	  0|1)
144
		do_start
145
		case "$?" in
146
			0) log_end_msg 0 ;;
147
			1) log_end_msg 1 ;; # Old process is still running
148
			*) log_end_msg 1 ;; # Failed to start
149
		esac
150
		;;
151
	  *)
152
	  	# Failed to stop
153
		log_end_msg 1
154
		;;
155
	esac
156
	;;
157
	manage)
158
        shift
159
        if [ $(id -un) != $USER ]; then
160
            sudo -E -u $USER python /usr/lib/$NAME/manage.py "$@"
161
        else
162
            python /usr/lib/$NAME/manage.py "$@"
163
        fi
164
	;;
165
  *)
166
	#echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
167
	echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2
168
	exit 3
169
	;;
170
esac
171

    
(10-10/13)