#! /bin/sh # Copyright (c) 1996 S.u.S.E. Gmbh Fuerth, Germany. All rights reserved. # # Author: Florian La Roche , 1996 # # /sbin/init.d/squid # . /etc/rc.config test "$START_SQUID" = yes || exit 0 case "$1" in start) echo "Starting WWW-Proxy squid." /usr/sbin/RunCache & ;; stop) echo -n "Shutting down WWW-Proxy squid:" /usr/bin/killall -9 RunCache /usr/sbin/squid -k shutdown echo ;; *) echo "Usage: $0 {start|stop}" exit 1 esac exit 0