diff options
author | steve <steve@FreeBSD.org> | 1999-06-22 17:21:59 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-06-22 17:21:59 +0000 |
commit | b01821a562bb0cc1966e46434a532a856abdd78a (patch) | |
tree | 0f28a04e5b28d071496179f73084b20658d45426 /www/squid22 | |
parent | 1f86ab2a8a3a8bf91c4a86773bf9b0adc97f862d (diff) | |
download | FreeBSD-ports-b01821a562bb0cc1966e46434a532a856abdd78a.zip FreeBSD-ports-b01821a562bb0cc1966e46434a532a856abdd78a.tar.gz |
Don't require interaction on install while PACKAGE_BUILDING.
Diffstat (limited to 'www/squid22')
-rw-r--r-- | www/squid22/pkg-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/squid22/pkg-install b/www/squid22/pkg-install index f2088a4..2b6052e 100644 --- a/www/squid22/pkg-install +++ b/www/squid22/pkg-install @@ -20,7 +20,7 @@ case $2 in echo " You'd certainly like to pay attention to the" echo " ACTUAL locations of cache \"spool\", logfiles, pidfile!" tput me - read skip + if [ -z "${PACKAGE_BUILDING}" ]; then read skip; fi chown root:wheel ${PREFIX:-/usr/local}/etc/squid/squid.conf* chmod 644 ${PREFIX:-/usr/local}/etc/squid/squid.conf* [ -f ${PREFIX:-/usr/local}/etc/squid/squid.conf ] || \ |