blob: e27ac75021de895aaa7b5bfeca44cdb9e0a8b48c (
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
30
31
32
33
|
#!/bin/sh
#
# $NetBSD: INSTALL,v 1.1 2001/11/01 02:18:53 zuntum Exp $
#
PKGNAME=$1
CONFDIR=${PKG_PREFIX}/share/squid/
SQUIDCONF=squid.conf
MIMECONF=mime.conf
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 \"${CONFDIR}${SQUIDCONF}.default\" to \"${SQUIDCONF}\""
echo " and \"${CONFDIR}${MIMECONF}.default\" to \"${MIMECONF}\""
echo " and edit them as required. You should pay attention to the"
echo " ACTUAL locations of the cache \"spool\" logfiles and pidfile."
echo ""
;;
*)
echo "Unexpected Argument ${2}."
exit 1
;;
esac
exit 0
|