summaryrefslogtreecommitdiff
path: root/www/squid22/pkg-install
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1996-06-03 02:21:13 +0000
committerSatoshi Asami <asami@FreeBSD.org>1996-06-03 02:21:13 +0000
commitf9a9561a7c21d3109b02135f611cc2f652d7aa46 (patch)
tree0773fedb2139929c26ef29facf1b515227bfcd4c /www/squid22/pkg-install
parentfreefall.cdrom.com -> freefall.freebsd.org (diff)
A post-harvest www cache proxy.
Submitted by: Andrew V. Stesin <stesin@elvisti.kiev.ua> and Peter Stubbs <PETERS@staidan.qld.edu.au>
Notes
Notes: svn path=/head/; revision=3166
Diffstat (limited to 'www/squid22/pkg-install')
-rw-r--r--www/squid22/pkg-install36
1 files changed, 36 insertions, 0 deletions
diff --git a/www/squid22/pkg-install b/www/squid22/pkg-install
new file mode 100644
index 000000000000..e476199106d7
--- /dev/null
+++ b/www/squid22/pkg-install
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+PKGNAME=$1
+
+case $2 in
+ PRE-INSTALL)
+ ;;
+ POST-INSTALL)
+ echo "==> Post-installation configuration of ${PKGNAME}"
+ echo ""
+ echo " o you DO need running nameservice to start and run ${PKGNAME}"
+ echo " o add the following line to /etc/rc.local to start"
+ echo " ${PKGNAME} automatically:"
+ echo ""
+ echo " (cd /tmp; exec ${PREFIX:-/usr/local}/bin/RunCache) &"
+ 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 "==> Press Enter to edit the ${PKGNAME} config file."
+ echo " (The defaults are reasonable; and the file is well commented)"
+ echo " You'd probably like to pay attention to the"
+ echo " ACTUAL locations of BOTH cache \"spool\" AND logfiles."
+ read skip
+ chown root:wheel ${PREFIX:-/usr/local}/etc/squid.conf*
+ chmod 644 ${PREFIX:-/usr/local}/etc/squid.conf*
+ ${EDITOR:-vi} ${PREFIX:-/usr/local}/etc/squid.conf
+ ;;
+ *)
+ echo "Unexpected Argument $2!!!"
+ exit 1
+ ;;
+esac
+exit 0
+