Imported Upstream version 1.0.0
[platform/upstream/nghttp2.git] / contrib / nghttpx-init.in
1 #! /bin/sh
2 ### BEGIN INIT INFO
3 # Provides:          nghttpx
4 # Required-Start:    $remote_fs $syslog
5 # Required-Stop:     $remote_fs $syslog
6 # Default-Start:     2 3 4 5
7 # Default-Stop:      0 1 6
8 # Short-Description: nghttpx initscript
9 # Description:       nghttpx initscript
10 ### END INIT INFO
11
12 # Author: Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>
13 #
14 # Do NOT "set -e"
15
16 # PATH should only include /usr/* if it runs after the mountnfs.sh script
17 PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/local/bin
18 DESC="HTTP/2 reverse proxy"
19 NAME=nghttpx
20 # Depending on the configuration, binary may be located under @sbindir@
21 DAEMON=@bindir@/$NAME
22 PIDFILE=/var/run/$NAME.pid
23 DAEMON_ARGS="--conf /etc/nghttpx/nghttpx.conf --pid-file=$PIDFILE"
24 SCRIPTNAME=/etc/init.d/$NAME
25
26 # Exit if the package is not installed
27 [ -x "$DAEMON" ] || exit 0
28
29 # Read configuration variable file if it is present
30 [ -r /etc/default/$NAME ] && . /etc/default/$NAME
31
32 # Load the VERBOSE setting and other rcS variables
33 . /lib/init/vars.sh
34
35 # Define LSB log_* functions.
36 # Depend on lsb-base (>= 3.2-14) to ensure that this file is present
37 # and status_of_proc is working.
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
49         start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
50                 || return 1
51         start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
52                 $DAEMON_ARGS \
53                 || return 2
54         # Add code here, if necessary, that waits for the process to be ready
55         # to handle requests from services started subsequently which depend
56         # on this one.  As a last resort, sleep for some time.
57 }
58
59 #
60 # Function that stops the daemon/service
61 #
62 do_stop()
63 {
64         # Return
65         #   0 if daemon has been stopped
66         #   1 if daemon was already stopped
67         #   2 if daemon could not be stopped
68         #   other if a failure occurred
69         start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE
70         RETVAL="$?"
71         [ "$RETVAL" = 2 ] && return 2
72
73         # Wait for children to finish too if this is a daemon that forks
74         # and if the daemon is only ever run from this initscript.
75         # If the above conditions are not satisfied then add some other code
76         # that waits for the process to drop all resources that could be
77         # needed by services started subsequently.  A last resort is to
78         # sleep for some time.
79         #start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
80         #[ "$?" = 2 ] && return 2
81         # Many daemons don't delete their pidfiles when they exit.
82         rm -f $PIDFILE
83         return "$RETVAL"
84 }
85
86 #
87 # Function that sends a SIGHUP to the daemon/service
88 #
89 do_reload() {
90         #
91         # If the daemon can reload its configuration without
92         # restarting (for example, when it is sent a SIGHUP),
93         # then implement that here.
94         #
95         start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
96         return 0
97 }
98
99 case "$1" in
100   start)
101         [ "$VERBOSE" != no ] && log_daemon_msg "Starting $DESC" "$NAME"
102         do_start
103         case "$?" in
104                 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
105                 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
106         esac
107         ;;
108   stop)
109         [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $DESC" "$NAME"
110         do_stop
111         case "$?" in
112                 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;;
113                 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;;
114         esac
115         ;;
116   status)
117        status_of_proc "$DAEMON" "$NAME" && exit 0 || exit $?
118        ;;
119   upgrade)
120         log_daemon_msg "Upgrade $DESC" "$NAME"
121         pid=`pidofproc -p $PIDFILE $NAME`
122         case "$?" in
123                 0) echo "Sending USR2 signal to $pid"
124                    kill -USR2 $pid
125                    echo "Waiting for new binary..."
126                    sleep 5
127                    echo "Sending QUIT signal to $pid"
128                    kill -QUIT $pid
129                    log_end_msg 0
130                    ;;
131                 *) echo "pidofproc() failed"
132                    log_end_msg 1
133                    ;;
134         esac
135         ;;
136   #reload|force-reload)
137         #
138         # If do_reload() is not implemented then leave this commented out
139         # and leave 'force-reload' as an alias for 'restart'.
140         #
141         #log_daemon_msg "Reloading $DESC" "$NAME"
142         #do_reload
143         #log_end_msg $?
144         #;;
145   restart|force-reload)
146         #
147         # If the "reload" option is implemented then remove the
148         # 'force-reload' alias
149         #
150         log_daemon_msg "Restarting $DESC" "$NAME"
151         do_stop
152         case "$?" in
153           0|1)
154                 do_start
155                 case "$?" in
156                         0) log_end_msg 0 ;;
157                         1) log_end_msg 1 ;; # Old process is still running
158                         *) log_end_msg 1 ;; # Failed to start
159                 esac
160                 ;;
161           *)
162                 # Failed to stop
163                 log_end_msg 1
164                 ;;
165         esac
166         ;;
167   *)
168         echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload|upgrade}" >&2
169         exit 3
170         ;;
171 esac
172
173 :