summaryrefslogtreecommitdiff
path: root/www/squid/pkg/INSTALL
blob: 663a48938ba13051aa34aaed8fb07a9f05a556f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.2 1998/08/07 11:14:28 agc Exp $
#

PKGNAME=$1

case $2 in
    PRE-INSTALL)
	;;
    POST-INSTALL)
	echo ""
	echo "    o you DO need running nameservice to start and run ${PKGNAME}"
	echo ""
	echo "    o use the ${PKGNAME} proxy and caching WWW Server by"
	echo "      configuring your WWW Navigator (Netscape, Mosaic,...)"
	echo "      to use it as a proxy server."
	echo ""
	echo "    o copy \"squid.conf.default\" to \"squid.conf\" and edit it"
	echo "      as required. You should pay attention to the ACTUAL"
	echo "      locations of the cache \"spool\" logfiles and pidfile."
	echo ""
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0