89 lines
1.6 KiB
Bash
89 lines
1.6 KiB
Bash
#! /bin/sh
|
|
#
|
|
# $NetBSD: squid.sh,v 1.11 2001/09/18 16:12:11 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 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
|
do
|
|
if kill -0 ${DAEMON_PID} >/dev/null 2>&1; then
|
|
sleep 4
|
|
echo -n '.'
|
|
test $WAIT -lt 15 || 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
|