mauricio (owner)

Revisions

gist: 126656 Download_button fork
public
Public Clone URL: git://gist.github.com/126656.git
Embed All Files: show embed
nginx #
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
#! /bin/sh
 
# Description: Startup script for nginx webserver on Debian. Place in /etc/init.d and
# run 'sudo update-rc.d nginx defaults', or use the appropriate command on your
# distro.
#
# Author: Ryan Norbauer <ryan.norbauer@gmail.com>
# Modified: Geoffrey Grosenbach http://topfunky.com
 
set -e
 
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/ruby-enterprise/bin
DESC="nginx daemon"
NAME=nginx
DAEMON=/opt/nginx/sbin/$NAME
CONFIGFILE=/opt/nginx/conf/nginx.conf
PIDFILE=/opt/nginx/logs/nginx.pid
SCRIPTNAME=/etc/init.d/$NAME
 
# Gracefully exit if the package has been removed.
test -x $DAEMON || exit 0
 
d_start() {
  $DAEMON -c $CONFIGFILE || echo -n " already running"
}
 
d_stop() {
  kill -QUIT `cat $PIDFILE` || echo -n " not running"
}
 
d_reload() {
  kill -HUP `cat $PIDFILE` || echo -n " can't reload"
}
 
case "$1" in
  start)
   echo -n "Starting $DESC: $NAME"
   d_start
   echo "."
;;
  stop)
   echo -n "Stopping $DESC: $NAME"
   d_stop
   echo "."
;;
  reload)
   echo -n "Reloading $DESC configuration..."
   d_reload
   echo "reloaded."
  ;;
  restart)
   echo -n "Restarting $DESC: $NAME"
   d_stop
   # One second might not be time enough for a daemon to stop,
   # if this happens, d_start will fail (and dpkg will break if
   # the package is being upgraded). Change the timeout if needed
   # be, or change d_stop to have start-stop-daemon use --retry.
   # Notice that using --retry slows down the shutdown process somewhat.
   sleep 5
   d_start
   echo "."
;;
  *)
echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2
exit 3
;;
esac
 
exit 0