pkgsrc/www/squid/files/squid.sh
tron 369b9ee1cf Rework startup script:
- We don't want to wait forever until "squid" terminates. Wait at most
  20 seconds after a shutdown command use "kill" afterwards.
- Don't use "RunCache" to start "squid", it is not necessary and only
  causes trouble.
- Bring the "rotate" command which got lost in last update.
Bump package version number to 2.4.1nb2.
2001-07-30 07:30:11 +00:00

89 lines
1.6 KiB
Bash

#! /bin/sh
#
# $NetBSD: squid.sh,v 1.10 2001/07/30 07:30:12 tron Exp $
#
# PROVIDE: squid
# REQUIRE: DAEMON
# KEYWORD: shutdown
SQUID_CONF_DIR="@PREFIX@/etc/squid"
conf_file="${SQUID_CONF_DIR}/squid.conf"
name="squid"
command="@PREFIX@/sbin/${name}"
pidfile="/var/run/${name}.pid"
required_files="${conf_file} ${SQUID_CONF_DIR}/mime.conf"
command_args="-Y -f $conf_file"
stop_cmd="stop_nicely"
kill_command="${command} -k shutdown"
reload_cmd="${command} -k reconfigure"
rotate_cmd="${command} -k rotate"
#### end of configuration section ####
# XXX Shouldn't the default stop_cmd be this patient too?
#
stop_nicely ()
{
if [ -f ${pidfile} ] ; then
DAEMON_PID=`sed 1q ${pidfile}`
echo -n "Stopping ${name}"
${kill_command}
if [ ${DAEMON_PID} -ne 0 ]; then
echo -n '['
for WAIT in 0 1 2 3 4 5 6 7 8 9
do
if kill -0 ${DAEMON_PID} >/dev/null 2>&1; then
sleep 2
echo -n '.'
test $WAIT -lt 9 || kill ${DAEMON_PID}
else
break
fi
done
echo '].'
unset WAIT
fi
unset DAEMON_PID
fi
}
if [ -f /etc/rc.subr -a -d /etc/rc.d -a -f /etc/rc.d/DAEMON ]; then
. /etc/rc.subr
. /etc/rc.conf
extra_commands="reload rotate"
load_rc_config $name
run_rc_command "$1"
else # old NetBSD, Solaris, Linux, etc...
case $1 in
start)
if [ -x ${command} -a -f ${conf_file} ] ; then
eval ${start_cmd} && echo -n " ${name}"
fi
;;
stop)
${stop_cmd}
;;
reload)
if [ -f ${pidfile} ] ; then
${reload_cmd}
fi
;;
rotate)
if [ -f ${pidfile} ] ; then
${rotate_cmd}
fi
;;
*)
echo "Usage: $0 {start|stop|reload}" 1>&2
exit 64
;;
esac
fi