Commit 2a82d2b2 authored by Ingvar Hagelund's avatar Ingvar Hagelund

Patched up Red Hat init script to comply with newer Fedora standards

git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@3122 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 2d15b827
#! /bin/sh #! /bin/sh
# #
# varnish Control the varnish HTTP accelerator # varnish Control the varnish HTTP accelerator
# #
# chkconfig: - 90 10 # chkconfig: - 90 10
# description: HTTP accelerator # description: Varnish is a high-perfomance HTTP accelerator
# processname: varnishd # processname: varnishd
# config: /etc/varnish/vcl.conf # config: /etc/sysconfig/varnish
# pidfile: /var/run/varnish/varnishd.pid # pidfile: /var/run/varnish/varnishd.pid
### BEGIN INIT INFO
# Provides: varnish
# Required-Start: $network $local_fs $remote_fs
# Required-Stop: $network $local_fs $remote_fs
# Should-Start: $syslog
# Short-Description: start and stop varnishd
# Description: Varnish is a high-perfomance HTTP accelerator
### END INIT INFO
# Source function library. # Source function library.
. /etc/init.d/functions . /etc/init.d/functions
RETVAL=0 retval=0
PROCNAME=varnishd pidfile=/var/run/varnish.pid
PIDFILE=/var/run/varnish.pid lockfile=/var/lock/subsys/varnish
LOCKFILE=/var/lock/subsys/varnish
# Include varnish defaults exec="/usr/sbin/varnishd"
. /etc/sysconfig/varnish prog="varnishd"
config="/etc/sysconfig/varnish"
DAEMON="/usr/sbin/varnishd" # Include varnish defaults
[ -e /etc/sysconfig/varnish ] && . /etc/sysconfig/varnish
mkdir -p /var/run/varnish 2>/dev/null lockfile=/var/lock/subsys/$prog
# Open files (usually 1024, which is way too small for varnish) start() {
ulimit -n ${NFILES:-131072}
# Varnish wants to lock shared memory log in memory. if [ ! -x $exec ]
ulimit -l ${MEMLOCK:-82000} then
echo $exec not found
exit 5
fi
# See how we were called. if [ ! -f $config ]
case "$1" in then
start) echo $config not found
exit 6
fi
echo -n "Starting varnish HTTP accelerator: " echo -n "Starting varnish HTTP accelerator: "
# Open files (usually 1024, which is way too small for varnish)
ulimit -n ${NFILES:-131072}
# Varnish wants to lock shared memory log in memory.
ulimit -l ${MEMLOCK:-82000}
# $DAEMON_OPTS is set in /etc/sysconfig/varnish. At least, one # $DAEMON_OPTS is set in /etc/sysconfig/varnish. At least, one
# has to set up a backend, or /tmp will be used, which is a bad idea. # has to set up a backend, or /tmp will be used, which is a bad idea.
if [ "$DAEMON_OPTS" = "" ]; then if [ "$DAEMON_OPTS" = "" ]; then
echo "\$DAEMON_OPTS empty." echo "\$DAEMON_OPTS empty."
echo -n "Please put configuration options in /etc/sysconfig/varnish" echo -n "Please put configuration options in $config"
echo_failure return 6
else else
daemon ${DAEMON} "$DAEMON_OPTS" -P ${PIDFILE} > /dev/null 2>&1 # Varnish always gives output on STDOUT
sleep 1 daemon $exec "$DAEMON_OPTS" -P $pidfile > /dev/null 2>&1
pkill -0 $PROCNAME retval=$?
RETVAL=$? if [ $retval -eq 0 ]
if [ $RETVAL -eq 0 ]
then then
echo_success touch $lockfile
touch $LOCKFILE echo_success
else echo
echo_failure else
fi echo_failure
fi fi
echo return $retval
;;
stop)
echo -n "Stopping varnish HTTP accelerator: "
killproc $DAEMON
RETVAL=$?
if [ $RETVAL -eq 0 ]
then
echo_success
rm -f $LOCKFILE $PIDFILE
else
echo_failure
fi fi
}
stop() {
echo -n "Stopping $prog: "
killproc $prog
retval=$?
echo echo
;; [ $retval -eq 0 ] && rm -f $lockfile
status) return $retval
status $PROCNAME }
RETVAL=$?
;; restart() {
restart|reload) stop
$0 stop start
$0 start }
RETVAL=$?
;; reload() {
condrestart) restart
if [ -f $PIDFILE ]; then }
$0 stop
$0 start force_reload() {
RETVAL=$? restart
fi }
;;
*) rh_status() {
echo "Usage: $0 {start|stop|status|restart|condrestart}" status $prog
exit 1 }
rh_status_q() {
rh_status >/dev/null 2>&1
}
# See how we were called.
case "$1" in
start)
rh_status_q && exit 0
$1
;;
stop)
rh_status_q || exit 0
$1
;;
restart)
$1
;;
reload)
rh_status_q || exit 7
$1
;;
force-reload)
force_reload
;;
status)
rh_status
;;
condrestart|try-restart)
rh_status_q || exit 0
restart
;;
*)
echo "Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload}"
exit 2
esac esac
exit $RETVAL exit $?
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment