diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-06-10 15:40:44 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-06-10 15:40:44 +0000 |
commit | 6aec40e423e2fff97a2d20036982f845661b08cf (patch) | |
tree | 66ae27015e1c6f9902321ef86fad387bc3546c11 /www/squid27/files/squid.sh | |
parent | - Update to version 1.2.1 (diff) |
- Support systems where pf(4) must be installed from ports (see
ports/67724, submitted by Michal F. Hanula)
- Change ": foo=${foo:=bar}" into "foo=${foo:-bar}" to make the
shell scripts easier to read and understand
- Correct credits for the recently published NTLM auth
vulnerability and fix a nearby braino, too
- Bump PORTREVISION
PR: ports/67797
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=111209
Diffstat (limited to 'www/squid27/files/squid.sh')
-rw-r--r-- | www/squid27/files/squid.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/squid27/files/squid.sh b/www/squid27/files/squid.sh index 73fb0504db7a..4102d27fbc11 100644 --- a/www/squid27/files/squid.sh +++ b/www/squid27/files/squid.sh @@ -20,9 +20,9 @@ command=%%PREFIX%%/sbin/squid extra_commands=reload reload_cmd="${command} -k reconfigure" stop_cmd="${command} -k shutdown" -: ${squid_chdir:=%%PREFIX%%/squid/logs} -: ${squid_user:=%%SQUID_UID%%} -: ${squid_flags:="-D"} +squid_chdir=${squid_chdir:-%%PREFIX%%/squid/logs} +squid_user=${squid_user:-%%SQUID_UID%%} +squid_flags=${squid_flags:-"-D"} default_config=%%PREFIX%%/etc/squid/squid.conf if [ -f /etc/rc.subr ]; then |