#!/bin/sh # # $NetBSD: INSTALL,v 1.2 2001/11/08 06:58:10 tron Exp $ # PKGNAME=$1 CONFDIR=${PKG_PREFIX}/etc/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