diff options
author | bad <bad@pkgsrc.org> | 1999-01-28 15:39:59 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 1999-01-28 15:39:59 +0000 |
commit | bf0f117a4ef7ca7786b79a925994947fa2e597bd (patch) | |
tree | d0160584d430a240243bc3b9b29d979c53156ee8 | |
parent | c3af94feeaf44867aeb69780e9bde8c8d3c25d55 (diff) | |
download | pkgsrc-bf0f117a4ef7ca7786b79a925994947fa2e597bd.tar.gz |
pkg_add doesn't supply a third argument.
-rw-r--r-- | www/squid-current/pkg/INSTALL | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/www/squid-current/pkg/INSTALL b/www/squid-current/pkg/INSTALL index 93071e03b21..74ddeeaa340 100644 --- a/www/squid-current/pkg/INSTALL +++ b/www/squid-current/pkg/INSTALL @@ -1,12 +1,11 @@ #!/bin/sh # -# $NetBSD: INSTALL,v 1.1.1.1 1998/10/09 17:49:20 kim Exp $ +# $NetBSD: INSTALL,v 1.2 1999/01/28 15:39:59 bad Exp $ # PKGNAME=$1 -DEFCONF=$2 -case $3 in +case $2 in PRE-INSTALL) ;; POST-INSTALL) @@ -17,14 +16,14 @@ case $3 in echo " configuring your WWW Navigator (Netscape, Mosaic,...)" echo " to use it as a proxy server." echo "" - echo " o copy \"${DEFCONF}\" to \"/etc/squid.conf\"" + echo " o copy \"squid.conf.default\" to \"/etc/squid.conf\"" echo " and edit it as required. You should pay attention to" echo " the ACTUAL locations of the cache \"spool\" logfiles" echo " and pidfile." echo "" ;; *) - echo "Unexpected Argument $3!!!" + echo "Unexpected Argument $2!!!" exit 1 ;; esac |