2016-01-10 09:56:16 -06:00
|
|
|
#!/bin/sh
|
2009-01-29 16:24:13 +11:00
|
|
|
#
|
2016-01-10 09:56:16 -06:00
|
|
|
# /etc/rc.d/nginx: start/stop the nginx daemon
|
2009-01-29 16:24:13 +11:00
|
|
|
#
|
|
|
|
|
2016-01-10 09:56:16 -06:00
|
|
|
SSD=/sbin/start-stop-daemon
|
|
|
|
PROG=/usr/sbin/nginx
|
|
|
|
PID=/var/run/nginx.pid
|
|
|
|
|
2009-01-29 16:24:13 +11:00
|
|
|
case $1 in
|
2016-01-10 09:56:16 -06:00
|
|
|
"start")
|
|
|
|
$SSD --start --pidfile $PID --exec $PROG
|
|
|
|
;;
|
|
|
|
"stop")
|
|
|
|
$SSD --stop --retry 10 --pidfile $PID
|
|
|
|
;;
|
|
|
|
"restart")
|
|
|
|
$0 stop
|
|
|
|
$0 start
|
2015-11-23 21:05:51 -06:00
|
|
|
;;
|
2019-08-03 11:59:01 -05:00
|
|
|
"reload")
|
|
|
|
$PROG -s reload
|
|
|
|
;;
|
2016-01-10 09:56:16 -06:00
|
|
|
"status")
|
|
|
|
$SSD --status --pidfile $PID
|
|
|
|
case $? in
|
|
|
|
0)
|
|
|
|
echo "$PROG is running with pid $(cat $PID)"
|
|
|
|
;;
|
|
|
|
1)
|
|
|
|
echo "$PROG is not running but pid file $PID exists"
|
|
|
|
;;
|
|
|
|
3)
|
|
|
|
echo "$PROG is not running"
|
|
|
|
;;
|
|
|
|
4)
|
|
|
|
echo "Unable to determine program status"
|
|
|
|
;;
|
|
|
|
esac
|
2015-11-23 21:05:51 -06:00
|
|
|
;;
|
2009-01-29 16:40:39 +11:00
|
|
|
*)
|
2016-01-10 09:56:16 -06:00
|
|
|
echo "Usage: $0 [start|stop|restart|status]"
|
2015-11-23 21:05:51 -06:00
|
|
|
;;
|
2009-01-29 16:24:13 +11:00
|
|
|
esac
|