summaryrefslogtreecommitdiff
path: root/www/squid/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'www/squid/INSTALL')
-rw-r--r--www/squid/INSTALL33
1 files changed, 33 insertions, 0 deletions
diff --git a/www/squid/INSTALL b/www/squid/INSTALL
new file mode 100644
index 00000000000..e27ac75021d
--- /dev/null
+++ b/www/squid/INSTALL
@@ -0,0 +1,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