16404206 problem in UTILITY/SQUID s11u1-sru 0.175.1.8.0.3.0 S11.1SRU8.3
authorCraig Mohrman <craig.mohrman@oracle.com>
Tue, 21 May 2013 09:39:06 -0700
branchs11u1-sru
changeset 2630 1bd7ef7e23a1
parent 2625 5dad0fc5ed82
child 2631 c6d3a4112d9c
16404206 problem in UTILITY/SQUID
components/squid/Makefile
components/squid/files/http-squid
components/squid/files/http-squid.xml
components/squid/files/squid.conf.default
components/squid/http-squid
components/squid/http-squid.xml
components/squid/squid.conf.default
components/squid/squid.p5m
--- a/components/squid/Makefile	Fri May 17 20:31:53 2013 +0200
+++ b/components/squid/Makefile	Tue May 21 09:39:06 2013 -0700
@@ -20,7 +20,7 @@
 #
 
 #
-# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 #
 
 include ../../make-rules/shared-macros.mk
@@ -28,13 +28,14 @@
 PATH=/usr/bin:/usr/gnu/bin:/usr/sbin:/usr/perl5/bin
 
 COMPONENT_NAME=         squid
-COMPONENT_VERSION=      3.1.18
+COMPONENT_VERSION=      3.1.23
 COMPONENT_PROJECT_URL=  http://www.squid-cache.org/
 COMPONENT_SRC=          $(COMPONENT_NAME)-$(COMPONENT_VERSION)
-COMPONENT_ARCHIVE=      $(COMPONENT_SRC).tar.gz
+COMPONENT_ARCHIVE=      $(COMPONENT_SRC).tar.xz
 COMPONENT_ARCHIVE_HASH= \
-    sha256:6a7122514d58c3077f2b43c928864be10753d8e2c8439133dacc9eba6c45e00d
+    sha256:ba5f6a7000a032f2315923c1b8d0b37458d33a7f59d603facecf9e8c12470b34
 COMPONENT_ARCHIVE_URL=  $(COMPONENT_PROJECT_URL)Versions/v3/3.1/$(COMPONENT_ARCHIVE)
+COMPONENT_BUGDB=	utility/squid
 
 include ../../make-rules/prep.mk
 include ../../make-rules/configure.mk
@@ -88,13 +89,40 @@
 
 COMPONENT_POST_BUILD_ACTION= \
                 (cd $(COMPONENT_DIR) ; \
-                 $(CP) squid.conf.default $(@D)/src)
+                 $(CP) files/squid.conf.default $(@D)/src)
 
 # common targets
 build:		$(BUILD_32) 
 
 install:	$(INSTALL_32) 
-		
+
+# configure says it needs cppunit to test with.
+# After some work I can get cppunit to build but it quickly
+# falls over during test so giving up.
+# I don't think the test suite really tests squid's functionality anyways.
+#
+# To test manually follow along in the book
+# Squid Proxy Server 3.1 Beginner's Guide Page 34
+#
+# Add this to the top of /etc/squid/squid.conf:
+# cache_dir ufs /var/squid/cache/ 500 16 256
+# acl my_machine src 192.0.2.21 # Replace with your desktop's IP address
+# http_access allow my_machine
+#
+# Make sure apache is running.
+#	# svcs apache22
+# Start squid:
+#	# svcadm enable squid
+# On your desktop set your web browser to proxy through this squid:
+# Edit -> Preferences -> Advanced -> Network -> Settings
+#	Check: Manual proxy configuration
+#	HTTP Proxy: <squid servers IP address>    Port: 3128
+#   Save
+# Enter <squid server URL> in your web browser.  You should be accessing squid
+# and seeing files stored in the http server on that machine.
+# Enter <squid server URL>:897 in your web browser and squid should complain.
+# Squid is working properly.
+
 test:		$(NO_TESTS)
 
 BUILD_PKG_DEPENDENCIES =	$(BUILD_TOOLS)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/squid/files/http-squid	Tue May 21 09:39:06 2013 -0700
@@ -0,0 +1,54 @@
+#!/usr/bin/ksh93
+
+#
+# CDDL HEADER START
+#
+# The contents of this file are subject to the terms of the
+# Common Development and Distribution License (the "License").
+# You may not use this file except in compliance with the License.
+#
+# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+# or http://www.opensolaris.org/os/licensing.
+# See the License for the specific language governing permissions
+# and limitations under the License.
+#
+# When distributing Covered Code, include this CDDL HEADER in each
+# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+# If applicable, add the following below this CDDL HEADER, with the
+# fields enclosed by brackets "[]" replaced with your own identifying
+# information: Portions Copyright [yyyy] [name of copyright owner]
+#
+# CDDL HEADER END
+#
+# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
+#
+
+source /lib/svc/share/smf_include.sh
+
+typeset -r SQUID_HOME=/usr/squid
+typeset -r CONF_FILE=/etc/squid/squid.conf
+typeset -r PIDFILE=/var/squid/logs/squid.pid
+typeset -r SQUID="${SQUID_HOME}/sbin/squid"
+
+[[ ! -f ${CONF_FILE} ]] && exit $SMF_EXIT_ERR_CONFIG
+
+
+case "$1" in
+start)
+        /bin/rm -f ${PIDFILE}
+        if [[ ! -d /var/squid/cache/00 ]] ; then
+                out="$(${SQUID} -z)"
+        fi
+
+        exec ${SQUID} 2>&1
+        ;;
+stop)
+        exec ${SQUID} -k shutdown 2>&1
+        ;;
+*)
+        print "Usage: $0 {start|stop}"
+        exit 1
+        ;;
+esac
+
+# not reached
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/squid/files/http-squid.xml	Tue May 21 09:39:06 2013 -0700
@@ -0,0 +1,114 @@
+<?xml version="1.0"?>
+<!--
+
+ CDDL HEADER START
+
+ The contents of this file are subject to the terms of the
+ Common Development and Distribution License (the "License").
+ You may not use this file except in compliance with the License.
+
+ You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+ or http://www.opensolaris.org/os/licensing.
+ See the License for the specific language governing permissions
+ and limitations under the License.
+
+ When distributing Covered Code, include this CDDL HEADER in each
+ file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+ If applicable, add the following below this CDDL HEADER, with the
+ fields enclosed by brackets "[]" replaced with your own identifying
+ information: Portions Copyright [yyyy] [name of copyright owner]
+
+ CDDL HEADER END
+
+ Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
+
+-->
+
+<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
+
+<service_bundle type='manifest' name='SUNWsquidr:squid'>
+
+<service
+	name='network/http'
+	type='service'
+	version='1'>
+
+	<!--
+	  Because we may have multiple instances of network/http
+	  provided by different implementations, we keep dependencies
+	  and methods within the instance.
+	-->
+
+	<instance name='squid' enabled='false'>
+		<!--
+		  Wait for network interfaces to be initialized.
+		-->
+		<dependency name='network'
+		    grouping='require_all'
+		    restart_on='error'
+		    type='service'>
+		    <service_fmri value='svc:/milestone/network:default'/>
+		</dependency>
+
+		<!--
+		  Wait for all local filesystems to be mounted.
+		-->
+		<dependency name='filesystem-local'
+		    grouping='require_all'
+		    restart_on='none'
+		    type='service'>
+		    <service_fmri
+			value='svc:/system/filesystem/local:default'/>
+		</dependency>
+
+		<!--
+		  Wait for automounting to be available, as we may be
+		  serving data from home directories or other remote
+		  filesystems.
+		-->
+		<dependency name='autofs'
+		    grouping='optional_all'
+		    restart_on='error'
+		    type='service'>
+		    <service_fmri
+			value='svc:/system/filesystem/autofs:default'/>
+		</dependency>
+
+		<exec_method
+			type='method'
+			name='start'
+			exec='/lib/svc/method/http-squid start'
+			timeout_seconds='60' />
+
+		<exec_method
+			type='method'
+			name='stop'
+			exec='/lib/svc/method/http-squid stop'
+			timeout_seconds='60' />
+
+		<property_group name='startd' type='framework'>
+			<!-- sub-process core dumps shouldn't restart
+				session -->
+			<propval name='ignore_error' type='astring'
+				value='core,signal' />
+		</property_group>
+
+        <template>
+            <common_name>
+                <loctext xml:lang='C'>
+                    Squid WebCache
+                </loctext>
+            </common_name>
+            <documentation>
+                <manpage title='squid' section='8'
+                    manpath='/usr/squid/man' />
+                <doc_link name='squid-cache.org'
+                    uri='http://www.squid-cache.org' />
+            </documentation>
+        </template>
+	</instance>
+
+        <stability value='Evolving' />
+</service>
+
+</service_bundle>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/squid/files/squid.conf.default	Tue May 21 09:39:06 2013 -0700
@@ -0,0 +1,101 @@
+#
+# Recommended minimum configuration:
+#
+acl manager proto cache_object
+acl localhost src 127.0.0.1/32 ::1
+acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
+
+# Example rule allowing access from your local networks.
+# Adapt to list your (internal) IP networks from where browsing
+# should be allowed
+acl localnet src 10.0.0.0/8	# RFC1918 possible internal network
+acl localnet src 172.16.0.0/12	# RFC1918 possible internal network
+acl localnet src 192.168.0.0/16	# RFC1918 possible internal network
+acl localnet src fc00::/7       # RFC 4193 local private network range
+acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged) machines
+
+acl SSL_ports port 443
+acl Safe_ports port 80		# http
+acl Safe_ports port 21		# ftp
+acl Safe_ports port 443		# https
+acl Safe_ports port 70		# gopher
+acl Safe_ports port 210		# wais
+acl Safe_ports port 1025-65535	# unregistered ports
+acl Safe_ports port 280		# http-mgmt
+acl Safe_ports port 488		# gss-http
+acl Safe_ports port 591		# filemaker
+acl Safe_ports port 777		# multiling http
+acl CONNECT method CONNECT
+
+#
+# Recommended minimum Access Permission configuration:
+#
+# Only allow cachemgr access from localhost
+http_access allow manager localhost
+http_access deny manager
+
+# Deny requests to certain unsafe ports
+http_access deny !Safe_ports
+
+# Deny CONNECT to other than secure SSL ports
+http_access deny CONNECT !SSL_ports
+
+# We strongly recommend the following be uncommented to protect innocent
+# web applications running on the proxy server who think the only
+# one who can access services on "localhost" is a local user
+#http_access deny to_localhost
+
+#
+# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
+#
+
+# Example rule allowing access from your local networks.
+# Adapt localnet in the ACL section to list your (internal) IP networks
+# from where browsing should be allowed
+http_access allow localnet
+http_access allow localhost
+
+# And finally deny all other access to this proxy
+http_access deny all
+
+# Squid normally listens to port 3128
+http_port 3128
+
+# We recommend you to use at least the following line.
+hierarchy_stoplist cgi-bin ?
+
+# Uncomment and adjust the following to add a disk cache directory.
+#cache_dir ufs /var/squid/cache 100 16 256
+
+# Leave coredumps in the first cache dir
+coredump_dir /var/squid/cache
+
+# Add any of your own refresh_pattern entries above these.
+refresh_pattern ^ftp:		1440	20%	10080
+refresh_pattern ^gopher:	1440	0%	1440
+refresh_pattern -i (/cgi-bin/|\?) 0	0%	0
+refresh_pattern .		0	20%	4320
+
+#  TAG: cache_effective_user
+#	If you start Squid as root, it will change its effective/real
+#	UID/GID to the user specified below.  The default is to change
+#	to UID to nobody.  If you define cache_effective_user, but not
+#	cache_effective_group, Squid sets the GID to the effective
+#	user's default group ID (taken from the password file) and
+#	supplementary group list from the from groups membership of
+#	cache_effective_user.
+#
+#Default:
+cache_effective_user webservd
+
+#  TAG: cache_effective_group
+#	If you want Squid to run with a specific GID regardless of
+#	the group memberships of the effective user then set this
+#	to the group (or GID) you want Squid to run as. When set
+#	all other group privileges of the effective user is ignored
+#	and only this GID is effective. If Squid is not started as
+#	root the user starting Squid must be member of the specified
+#	group.
+#
+#Default:
+# none
--- a/components/squid/http-squid	Fri May 17 20:31:53 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,54 +0,0 @@
-#!/usr/bin/ksh93
-
-#
-# CDDL HEADER START
-#
-# The contents of this file are subject to the terms of the
-# Common Development and Distribution License (the "License").
-# You may not use this file except in compliance with the License.
-#
-# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-# or http://www.opensolaris.org/os/licensing.
-# See the License for the specific language governing permissions
-# and limitations under the License.
-#
-# When distributing Covered Code, include this CDDL HEADER in each
-# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-# If applicable, add the following below this CDDL HEADER, with the
-# fields enclosed by brackets "[]" replaced with your own identifying
-# information: Portions Copyright [yyyy] [name of copyright owner]
-#
-# CDDL HEADER END
-#
-# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
-#
-
-source /lib/svc/share/smf_include.sh
-
-typeset -r SQUID_HOME=/usr/squid
-typeset -r CONF_FILE=/etc/squid/squid.conf
-typeset -r PIDFILE=/var/squid/logs/squid.pid
-typeset -r SQUID="${SQUID_HOME}/sbin/squid"
-
-[[ ! -f ${CONF_FILE} ]] && exit $SMF_EXIT_ERR_CONFIG
-
-
-case "$1" in
-start)
-        /bin/rm -f ${PIDFILE}
-        if [[ ! -d /var/squid/cache/00 ]] ; then
-                out="$(${SQUID} -z)"
-        fi
-
-        exec ${SQUID} 2>&1
-        ;;
-stop)
-        exec ${SQUID} -k shutdown 2>&1
-        ;;
-*)
-        print "Usage: $0 {start|stop}"
-        exit 1
-        ;;
-esac
-
-# not reached
--- a/components/squid/http-squid.xml	Fri May 17 20:31:53 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,114 +0,0 @@
-<?xml version="1.0"?>
-<!--
-
- CDDL HEADER START
-
- The contents of this file are subject to the terms of the
- Common Development and Distribution License (the "License").
- You may not use this file except in compliance with the License.
-
- You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
- or http://www.opensolaris.org/os/licensing.
- See the License for the specific language governing permissions
- and limitations under the License.
-
- When distributing Covered Code, include this CDDL HEADER in each
- file and include the License file at usr/src/OPENSOLARIS.LICENSE.
- If applicable, add the following below this CDDL HEADER, with the
- fields enclosed by brackets "[]" replaced with your own identifying
- information: Portions Copyright [yyyy] [name of copyright owner]
-
- CDDL HEADER END
-
- Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
-
--->
-
-<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
-
-<service_bundle type='manifest' name='SUNWsquidr:squid'>
-
-<service
-	name='network/http'
-	type='service'
-	version='1'>
-
-	<!--
-	  Because we may have multiple instances of network/http
-	  provided by different implementations, we keep dependencies
-	  and methods within the instance.
-	-->
-
-	<instance name='squid' enabled='false'>
-		<!--
-		  Wait for network interfaces to be initialized.
-		-->
-		<dependency name='network'
-		    grouping='require_all'
-		    restart_on='error'
-		    type='service'>
-		    <service_fmri value='svc:/milestone/network:default'/>
-		</dependency>
-
-		<!--
-		  Wait for all local filesystems to be mounted.
-		-->
-		<dependency name='filesystem-local'
-		    grouping='require_all'
-		    restart_on='none'
-		    type='service'>
-		    <service_fmri
-			value='svc:/system/filesystem/local:default'/>
-		</dependency>
-
-		<!--
-		  Wait for automounting to be available, as we may be
-		  serving data from home directories or other remote
-		  filesystems.
-		-->
-		<dependency name='autofs'
-		    grouping='optional_all'
-		    restart_on='error'
-		    type='service'>
-		    <service_fmri
-			value='svc:/system/filesystem/autofs:default'/>
-		</dependency>
-
-		<exec_method
-			type='method'
-			name='start'
-			exec='/lib/svc/method/http-squid start'
-			timeout_seconds='60' />
-
-		<exec_method
-			type='method'
-			name='stop'
-			exec='/lib/svc/method/http-squid stop'
-			timeout_seconds='60' />
-
-		<property_group name='startd' type='framework'>
-			<!-- sub-process core dumps shouldn't restart
-				session -->
-			<propval name='ignore_error' type='astring'
-				value='core,signal' />
-		</property_group>
-
-        <template>
-            <common_name>
-                <loctext xml:lang='C'>
-                    Squid WebCache
-                </loctext>
-            </common_name>
-            <documentation>
-                <manpage title='squid' section='8'
-                    manpath='/usr/squid/man' />
-                <doc_link name='squid-cache.org'
-                    uri='http://www.squid-cache.org' />
-            </documentation>
-        </template>
-	</instance>
-
-        <stability value='Evolving' />
-</service>
-
-</service_bundle>
--- a/components/squid/squid.conf.default	Fri May 17 20:31:53 2013 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,101 +0,0 @@
-#
-# Recommended minimum configuration:
-#
-acl manager proto cache_object
-acl localhost src 127.0.0.1/32 ::1
-acl to_localhost dst 127.0.0.0/8 0.0.0.0/32 ::1
-
-# Example rule allowing access from your local networks.
-# Adapt to list your (internal) IP networks from where browsing
-# should be allowed
-acl localnet src 10.0.0.0/8	# RFC1918 possible internal network
-acl localnet src 172.16.0.0/12	# RFC1918 possible internal network
-acl localnet src 192.168.0.0/16	# RFC1918 possible internal network
-acl localnet src fc00::/7       # RFC 4193 local private network range
-acl localnet src fe80::/10      # RFC 4291 link-local (directly plugged) machines
-
-acl SSL_ports port 443
-acl Safe_ports port 80		# http
-acl Safe_ports port 21		# ftp
-acl Safe_ports port 443		# https
-acl Safe_ports port 70		# gopher
-acl Safe_ports port 210		# wais
-acl Safe_ports port 1025-65535	# unregistered ports
-acl Safe_ports port 280		# http-mgmt
-acl Safe_ports port 488		# gss-http
-acl Safe_ports port 591		# filemaker
-acl Safe_ports port 777		# multiling http
-acl CONNECT method CONNECT
-
-#
-# Recommended minimum Access Permission configuration:
-#
-# Only allow cachemgr access from localhost
-http_access allow manager localhost
-http_access deny manager
-
-# Deny requests to certain unsafe ports
-http_access deny !Safe_ports
-
-# Deny CONNECT to other than secure SSL ports
-http_access deny CONNECT !SSL_ports
-
-# We strongly recommend the following be uncommented to protect innocent
-# web applications running on the proxy server who think the only
-# one who can access services on "localhost" is a local user
-#http_access deny to_localhost
-
-#
-# INSERT YOUR OWN RULE(S) HERE TO ALLOW ACCESS FROM YOUR CLIENTS
-#
-
-# Example rule allowing access from your local networks.
-# Adapt localnet in the ACL section to list your (internal) IP networks
-# from where browsing should be allowed
-http_access allow localnet
-http_access allow localhost
-
-# And finally deny all other access to this proxy
-http_access deny all
-
-# Squid normally listens to port 3128
-http_port 3128
-
-# We recommend you to use at least the following line.
-hierarchy_stoplist cgi-bin ?
-
-# Uncomment and adjust the following to add a disk cache directory.
-#cache_dir ufs /var/squid/cache 100 16 256
-
-# Leave coredumps in the first cache dir
-coredump_dir /var/squid/cache
-
-# Add any of your own refresh_pattern entries above these.
-refresh_pattern ^ftp:		1440	20%	10080
-refresh_pattern ^gopher:	1440	0%	1440
-refresh_pattern -i (/cgi-bin/|\?) 0	0%	0
-refresh_pattern .		0	20%	4320
-
-#  TAG: cache_effective_user
-#	If you start Squid as root, it will change its effective/real
-#	UID/GID to the user specified below.  The default is to change
-#	to UID to nobody.  If you define cache_effective_user, but not
-#	cache_effective_group, Squid sets the GID to the effective
-#	user's default group ID (taken from the password file) and
-#	supplementary group list from the from groups membership of
-#	cache_effective_user.
-#
-#Default:
-cache_effective_user webservd
-
-#  TAG: cache_effective_group
-#	If you want Squid to run with a specific GID regardless of
-#	the group memberships of the effective user then set this
-#	to the group (or GID) you want Squid to run as. When set
-#	all other group privileges of the effective user is ignored
-#	and only this GID is effective. If Squid is not started as
-#	root the user starting Squid must be member of the specified
-#	group.
-#
-#Default:
-# none
--- a/components/squid/squid.p5m	Fri May 17 20:31:53 2013 +0200
+++ b/components/squid/squid.p5m	Tue May 21 09:39:06 2013 -0700
@@ -18,7 +18,7 @@
 #
 # CDDL HEADER END
 #
-# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved.
+# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
 #
 
 <transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
@@ -28,98 +28,52 @@
 set name=pkg.description \
     value="Squid is a caching proxy for the Web supporting HTTP, HTTPS, FTP, and more."
 set name=pkg.summary value="Squid Web Proxy Cache"
+set name=com.oracle.info.description value="the Squid Web Proxy Cache"
+set name=com.oracle.info.tpno value=13323
 set name=info.classification \
     value="org.opensolaris.category.2008:Web Services/Application and Web Servers"
 set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
 set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
-set name=org.opensolaris.arc-caseid \
-    value=LSARC/2009/130
+set name=org.opensolaris.arc-caseid value=LSARC/2009/130
 set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
-dir path=etc
-dir path=etc/squid
-dir path=lib
-dir path=lib/svc
-dir path=lib/svc/manifest
-dir path=lib/svc/manifest/network
-dir path=lib/svc/method
-dir path=usr
-dir path=usr/squid
-dir path=usr/squid/bin
-dir path=usr/squid/libexec
-dir path=usr/squid/man
-dir path=usr/squid/man/man1
-dir path=usr/squid/man/man8
-dir path=usr/squid/sbin
-dir path=usr/squid/share
-dir path=usr/squid/share/errors
-dir path=usr/squid/share/errors/af
-dir path=usr/squid/share/errors/ar
-dir path=usr/squid/share/errors/az
-dir path=usr/squid/share/errors/bg
-dir path=usr/squid/share/errors/ca
-dir path=usr/squid/share/errors/cs
-dir path=usr/squid/share/errors/da
-dir path=usr/squid/share/errors/de
-dir path=usr/squid/share/errors/el
-dir path=usr/squid/share/errors/en
-dir path=usr/squid/share/errors/es
-dir path=usr/squid/share/errors/et
-dir path=usr/squid/share/errors/fa
-dir path=usr/squid/share/errors/fi
-dir path=usr/squid/share/errors/fr
-dir path=usr/squid/share/errors/he
-dir path=usr/squid/share/errors/hu
-dir path=usr/squid/share/errors/hy
-dir path=usr/squid/share/errors/id
-dir path=usr/squid/share/errors/it
-dir path=usr/squid/share/errors/ja
-dir path=usr/squid/share/errors/ko
-dir path=usr/squid/share/errors/lt
-dir path=usr/squid/share/errors/lv
-dir path=usr/squid/share/errors/ms
-dir path=usr/squid/share/errors/nl
-dir path=usr/squid/share/errors/oc
-dir path=usr/squid/share/errors/pl
-dir path=usr/squid/share/errors/pt
-dir path=usr/squid/share/errors/pt-br
-dir path=usr/squid/share/errors/ro
-dir path=usr/squid/share/errors/ru
-dir path=usr/squid/share/errors/sk
-dir path=usr/squid/share/errors/sr-cyrl
-dir path=usr/squid/share/errors/sr-latn
-dir path=usr/squid/share/errors/sv
-dir path=usr/squid/share/errors/templates
-dir path=usr/squid/share/errors/th
-dir path=usr/squid/share/errors/tr
-dir path=usr/squid/share/errors/uk
-dir path=usr/squid/share/errors/uz
-dir path=usr/squid/share/errors/vi
-dir path=usr/squid/share/errors/zh-cn
-dir path=usr/squid/share/errors/zh-tw
-dir path=usr/squid/share/icons
-dir path=var
-dir path=var/squid
+
+license squid.license license=GPLv2
+
+# smf stuff to control start/stop of squid
+file files/http-squid path=lib/svc/method/http-squid \
+     restart_fmri=svc:/network/http:squid
+file files/http-squid.xml path=lib/svc/manifest/network/http-squid.xml
+
+# special attributes
+file path=etc/squid/cachemgr.conf group=webservd mode=0644 \
+    original_name=SUNWsquid:etc/squid/cachemgr.conf preserve=renamenew
+file path=etc/squid/mime.conf group=webservd mode=0644 \
+    original_name=SUNWsquid:etc/squid/mime.conf preserve=renamenew
+file path=etc/squid/msntauth.conf group=webservd mode=0644 \
+    original_name=SUNWsquid:etc/squid/msntauth.conf preserve=renamenew
+file path=etc/squid/squid.conf group=webservd mode=0644 \
+    original_name=SUNWsquid:etc/squid/squid.conf preserve=renamenew
 dir path=var/squid/cache group=webservd owner=webservd mode=0755
 dir path=var/squid/logs group=webservd owner=webservd mode=0755
 dir path=var/squid/run group=webservd owner=webservd mode=0755
-file path=etc/squid/cachemgr.conf group=webservd mode=0644 \
-    original_name=SUNWsquid:etc/squid/cachemgr.conf preserve=renamenew
+
+# from here on files have no modified attributes
+dir  path=etc
+dir  path=etc/squid
 file path=etc/squid/cachemgr.conf.default
 file path=etc/squid/errorpage.css
 file path=etc/squid/errorpage.css.default
-file path=etc/squid/mime.conf group=webservd mode=0644 \
-    original_name=SUNWsquid:etc/squid/mime.conf preserve=renamenew
 file path=etc/squid/mime.conf.default
-file path=etc/squid/msntauth.conf group=webservd mode=0644 \
-    original_name=SUNWsquid:etc/squid/msntauth.conf preserve=renamenew
 file path=etc/squid/msntauth.conf.default
-file path=etc/squid/squid.conf group=webservd mode=0644 \
-    original_name=SUNWsquid:etc/squid/squid.conf preserve=renamenew
 file path=etc/squid/squid.conf.default
 file path=etc/squid/squid.conf.documented
-file http-squid.xml path=lib/svc/manifest/network/http-squid.xml
-file http-squid path=lib/svc/method/http-squid
+dir  path=usr
+dir  path=usr/squid
+dir  path=usr/squid/bin
 file path=usr/squid/bin/squidclient
+dir  path=usr/squid/include
+dir  path=usr/squid/lib
+dir  path=usr/squid/libexec
 file path=usr/squid/libexec/cachemgr.cgi
 file path=usr/squid/libexec/digest_ldap_auth
 file path=usr/squid/libexec/digest_pw_auth
@@ -149,7 +103,10 @@
 file path=usr/squid/libexec/unlinkd
 file path=usr/squid/libexec/wbinfo_group.pl
 file path=usr/squid/libexec/yp_auth
+dir  path=usr/squid/man
+dir  path=usr/squid/man/man1
 file path=usr/squid/man/man1/squidclient.1
+dir  path=usr/squid/man/man8
 file path=usr/squid/man/man8/cachemgr.cgi.8
 file path=usr/squid/man/man8/ncsa_auth.8
 file path=usr/squid/man/man8/pam_auth.8
@@ -158,10 +115,17 @@
 file path=usr/squid/man/man8/squid_ldap_auth.8
 file path=usr/squid/man/man8/squid_ldap_group.8
 file path=usr/squid/man/man8/squid_unix_group.8
+dir  path=usr/squid/sbin
 file path=usr/squid/sbin/squid
+dir  path=usr/squid/share
+dir  path=usr/squid/share/errors
 file path=usr/squid/share/errors/COPYRIGHT
 file path=usr/squid/share/errors/TRANSLATORS
+dir  path=usr/squid/share/errors/af
 file path=usr/squid/share/errors/af/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/af/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/af/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/af/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/af/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/af/ERR_CANNOT_FORWARD
@@ -198,7 +162,28 @@
 file path=usr/squid/share/errors/af/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/af/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/af/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/af/error-details.txt
+dir  path=usr/squid/share/errors/ar
+link path=usr/squid/share/errors/ar-ae target=ar
+link path=usr/squid/share/errors/ar-bh target=ar
+link path=usr/squid/share/errors/ar-dz target=ar
+link path=usr/squid/share/errors/ar-eg target=ar
+link path=usr/squid/share/errors/ar-iq target=ar
+link path=usr/squid/share/errors/ar-jo target=ar
+link path=usr/squid/share/errors/ar-kw target=ar
+link path=usr/squid/share/errors/ar-lb target=ar
+link path=usr/squid/share/errors/ar-ly target=ar
+link path=usr/squid/share/errors/ar-ma target=ar
+link path=usr/squid/share/errors/ar-om target=ar
+link path=usr/squid/share/errors/ar-qa target=ar
+link path=usr/squid/share/errors/ar-sa target=ar
+link path=usr/squid/share/errors/ar-sy target=ar
+link path=usr/squid/share/errors/ar-tn target=ar
+link path=usr/squid/share/errors/ar-ye target=ar
 file path=usr/squid/share/errors/ar/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ar/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ar/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ar/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ar/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ar/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ar/ERR_CANNOT_FORWARD
@@ -235,7 +220,13 @@
 file path=usr/squid/share/errors/ar/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ar/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ar/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ar/error-details.txt
+dir  path=usr/squid/share/errors/az
+link path=usr/squid/share/errors/az-az target=az
 file path=usr/squid/share/errors/az/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/az/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/az/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/az/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/az/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/az/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/az/ERR_CANNOT_FORWARD
@@ -272,7 +263,13 @@
 file path=usr/squid/share/errors/az/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/az/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/az/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/az/error-details.txt
+dir  path=usr/squid/share/errors/bg
+link path=usr/squid/share/errors/bg-bg target=bg
 file path=usr/squid/share/errors/bg/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/bg/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/bg/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/bg/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/bg/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/bg/ERR_CANNOT_FORWARD
@@ -309,7 +306,12 @@
 file path=usr/squid/share/errors/bg/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/bg/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/bg/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/bg/error-details.txt
+dir  path=usr/squid/share/errors/ca
 file path=usr/squid/share/errors/ca/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ca/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ca/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ca/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ca/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ca/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ca/ERR_CANNOT_FORWARD
@@ -346,7 +348,13 @@
 file path=usr/squid/share/errors/ca/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ca/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ca/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ca/error-details.txt
+dir  path=usr/squid/share/errors/cs
+link path=usr/squid/share/errors/cs-cz target=cs
 file path=usr/squid/share/errors/cs/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/cs/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/cs/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/cs/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/cs/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/cs/ERR_CANNOT_FORWARD
@@ -383,7 +391,13 @@
 file path=usr/squid/share/errors/cs/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/cs/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/cs/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/cs/error-details.txt
+dir  path=usr/squid/share/errors/da
+link path=usr/squid/share/errors/da-dk target=da
 file path=usr/squid/share/errors/da/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/da/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/da/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/da/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/da/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/da/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/da/ERR_CANNOT_FORWARD
@@ -420,7 +434,17 @@
 file path=usr/squid/share/errors/da/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/da/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/da/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/da/error-details.txt
+dir  path=usr/squid/share/errors/de
+link path=usr/squid/share/errors/de-at target=de
+link path=usr/squid/share/errors/de-ch target=de
+link path=usr/squid/share/errors/de-de target=de
+link path=usr/squid/share/errors/de-li target=de
+link path=usr/squid/share/errors/de-lu target=de
 file path=usr/squid/share/errors/de/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/de/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/de/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/de/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/de/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/de/ERR_CANNOT_FORWARD
@@ -457,7 +481,13 @@
 file path=usr/squid/share/errors/de/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/de/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/de/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/de/error-details.txt
+dir  path=usr/squid/share/errors/el
+link path=usr/squid/share/errors/el-gr target=el
 file path=usr/squid/share/errors/el/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/el/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/el/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/el/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/el/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/el/ERR_CANNOT_FORWARD
@@ -494,7 +524,27 @@
 file path=usr/squid/share/errors/el/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/el/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/el/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/el/error-details.txt
+dir  path=usr/squid/share/errors/en
+link path=usr/squid/share/errors/en-au target=en
+link path=usr/squid/share/errors/en-bz target=en
+link path=usr/squid/share/errors/en-ca target=en
+link path=usr/squid/share/errors/en-gb target=en
+link path=usr/squid/share/errors/en-ie target=en
+link path=usr/squid/share/errors/en-in target=en
+link path=usr/squid/share/errors/en-jm target=en
+link path=usr/squid/share/errors/en-nz target=en
+link path=usr/squid/share/errors/en-ph target=en
+link path=usr/squid/share/errors/en-sg target=en
+link path=usr/squid/share/errors/en-tt target=en
+link path=usr/squid/share/errors/en-uk target=en
+link path=usr/squid/share/errors/en-us target=en
+link path=usr/squid/share/errors/en-za target=en
+link path=usr/squid/share/errors/en-zw target=en
 file path=usr/squid/share/errors/en/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/en/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/en/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/en/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/en/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/en/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/en/ERR_CANNOT_FORWARD
@@ -531,7 +581,31 @@
 file path=usr/squid/share/errors/en/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/en/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/en/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/en/error-details.txt
+dir  path=usr/squid/share/errors/es
+link path=usr/squid/share/errors/es-ar target=es
+link path=usr/squid/share/errors/es-bo target=es
+link path=usr/squid/share/errors/es-cl target=es
+link path=usr/squid/share/errors/es-co target=es
+link path=usr/squid/share/errors/es-cr target=es
+link path=usr/squid/share/errors/es-do target=es
+link path=usr/squid/share/errors/es-ec target=es
+link path=usr/squid/share/errors/es-es target=es
+link path=usr/squid/share/errors/es-gt target=es
+link path=usr/squid/share/errors/es-hn target=es
+link path=usr/squid/share/errors/es-mx target=es
+link path=usr/squid/share/errors/es-ni target=es
+link path=usr/squid/share/errors/es-pa target=es
+link path=usr/squid/share/errors/es-pe target=es
+link path=usr/squid/share/errors/es-pr target=es
+link path=usr/squid/share/errors/es-py target=es
+link path=usr/squid/share/errors/es-sv target=es
+link path=usr/squid/share/errors/es-uy target=es
+link path=usr/squid/share/errors/es-ve target=es
 file path=usr/squid/share/errors/es/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/es/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/es/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/es/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/es/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/es/ERR_CANNOT_FORWARD
@@ -568,7 +642,13 @@
 file path=usr/squid/share/errors/es/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/es/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/es/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/es/error-details.txt
+dir  path=usr/squid/share/errors/et
+link path=usr/squid/share/errors/et-ee target=et
 file path=usr/squid/share/errors/et/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/et/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/et/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/et/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/et/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/et/ERR_CANNOT_FORWARD
@@ -605,7 +685,14 @@
 file path=usr/squid/share/errors/et/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/et/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/et/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/et/error-details.txt
+dir  path=usr/squid/share/errors/fa
+link path=usr/squid/share/errors/fa-fa target=fa
+link path=usr/squid/share/errors/fa-ir target=fa
 file path=usr/squid/share/errors/fa/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/fa/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/fa/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/fa/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/fa/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/fa/ERR_CANNOT_FORWARD
@@ -642,7 +729,13 @@
 file path=usr/squid/share/errors/fa/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/fa/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/fa/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/fa/error-details.txt
+dir  path=usr/squid/share/errors/fi
+link path=usr/squid/share/errors/fi-fi target=fi
 file path=usr/squid/share/errors/fi/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/fi/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/fi/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/fi/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/fi/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/fi/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/fi/ERR_CANNOT_FORWARD
@@ -679,7 +772,18 @@
 file path=usr/squid/share/errors/fi/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/fi/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/fi/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/fi/error-details.txt
+dir  path=usr/squid/share/errors/fr
+link path=usr/squid/share/errors/fr-be target=fr
+link path=usr/squid/share/errors/fr-ca target=fr
+link path=usr/squid/share/errors/fr-ch target=fr
+link path=usr/squid/share/errors/fr-fr target=fr
+link path=usr/squid/share/errors/fr-lu target=fr
+link path=usr/squid/share/errors/fr-mc target=fr
 file path=usr/squid/share/errors/fr/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/fr/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/fr/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/fr/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/fr/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/fr/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/fr/ERR_CANNOT_FORWARD
@@ -716,7 +820,13 @@
 file path=usr/squid/share/errors/fr/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/fr/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/fr/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/fr/error-details.txt
+dir  path=usr/squid/share/errors/he
+link path=usr/squid/share/errors/he-il target=he
 file path=usr/squid/share/errors/he/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/he/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/he/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/he/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/he/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/he/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/he/ERR_CANNOT_FORWARD
@@ -753,7 +863,13 @@
 file path=usr/squid/share/errors/he/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/he/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/he/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/he/error-details.txt
+dir  path=usr/squid/share/errors/hu
+link path=usr/squid/share/errors/hu-hu target=hu
 file path=usr/squid/share/errors/hu/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/hu/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/hu/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/hu/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/hu/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/hu/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/hu/ERR_CANNOT_FORWARD
@@ -790,7 +906,14 @@
 file path=usr/squid/share/errors/hu/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/hu/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/hu/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/hu/error-details.txt
+dir  path=usr/squid/share/errors/hy
+link path=usr/squid/share/errors/hy-am target=hy
+link path=usr/squid/share/errors/hy-armn target=hy
 file path=usr/squid/share/errors/hy/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/hy/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/hy/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/hy/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/hy/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/hy/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/hy/ERR_CANNOT_FORWARD
@@ -827,7 +950,13 @@
 file path=usr/squid/share/errors/hy/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/hy/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/hy/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/hy/error-details.txt
+dir  path=usr/squid/share/errors/id
+link path=usr/squid/share/errors/id-id target=id
 file path=usr/squid/share/errors/id/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/id/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/id/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/id/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/id/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/id/ERR_CANNOT_FORWARD
@@ -864,7 +993,14 @@
 file path=usr/squid/share/errors/id/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/id/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/id/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/id/error-details.txt
+dir  path=usr/squid/share/errors/it
+link path=usr/squid/share/errors/it-ch target=it
+link path=usr/squid/share/errors/it-it target=it
 file path=usr/squid/share/errors/it/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/it/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/it/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/it/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/it/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/it/ERR_CANNOT_FORWARD
@@ -901,7 +1037,13 @@
 file path=usr/squid/share/errors/it/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/it/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/it/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/it/error-details.txt
+dir  path=usr/squid/share/errors/ja
+link path=usr/squid/share/errors/ja-jp target=ja
 file path=usr/squid/share/errors/ja/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ja/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ja/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ja/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ja/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ja/ERR_CANNOT_FORWARD
@@ -938,7 +1080,14 @@
 file path=usr/squid/share/errors/ja/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ja/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ja/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ja/error-details.txt
+dir  path=usr/squid/share/errors/ko
+link path=usr/squid/share/errors/ko-kp target=ko
+link path=usr/squid/share/errors/ko-kr target=ko
 file path=usr/squid/share/errors/ko/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ko/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ko/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ko/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ko/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ko/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ko/ERR_CANNOT_FORWARD
@@ -975,7 +1124,13 @@
 file path=usr/squid/share/errors/ko/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ko/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ko/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ko/error-details.txt
+dir  path=usr/squid/share/errors/lt
+link path=usr/squid/share/errors/lt-lt target=lt
 file path=usr/squid/share/errors/lt/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/lt/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/lt/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/lt/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/lt/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/lt/ERR_CANNOT_FORWARD
@@ -1012,7 +1167,13 @@
 file path=usr/squid/share/errors/lt/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/lt/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/lt/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/lt/error-details.txt
+dir  path=usr/squid/share/errors/lv
+link path=usr/squid/share/errors/lv-lv target=lv
 file path=usr/squid/share/errors/lv/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/lv/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/lv/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/lv/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/lv/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/lv/ERR_CANNOT_FORWARD
@@ -1049,7 +1210,13 @@
 file path=usr/squid/share/errors/lv/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/lv/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/lv/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/lv/error-details.txt
+dir  path=usr/squid/share/errors/ms
+link path=usr/squid/share/errors/ms-my target=ms
 file path=usr/squid/share/errors/ms/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ms/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ms/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ms/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ms/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ms/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ms/ERR_CANNOT_FORWARD
@@ -1086,7 +1253,13 @@
 file path=usr/squid/share/errors/ms/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ms/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ms/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ms/error-details.txt
+dir  path=usr/squid/share/errors/nl
+link path=usr/squid/share/errors/nl-nl target=nl
 file path=usr/squid/share/errors/nl/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/nl/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/nl/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/nl/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/nl/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/nl/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/nl/ERR_CANNOT_FORWARD
@@ -1123,7 +1296,12 @@
 file path=usr/squid/share/errors/nl/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/nl/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/nl/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/nl/error-details.txt
+dir  path=usr/squid/share/errors/oc
 file path=usr/squid/share/errors/oc/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/oc/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/oc/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/oc/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/oc/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/oc/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/oc/ERR_CANNOT_FORWARD
@@ -1160,7 +1338,13 @@
 file path=usr/squid/share/errors/oc/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/oc/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/oc/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/oc/error-details.txt
+dir  path=usr/squid/share/errors/pl
+link path=usr/squid/share/errors/pl-pl target=pl
 file path=usr/squid/share/errors/pl/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/pl/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/pl/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/pl/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/pl/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/pl/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/pl/ERR_CANNOT_FORWARD
@@ -1197,7 +1381,13 @@
 file path=usr/squid/share/errors/pl/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/pl/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/pl/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/pl/error-details.txt
+dir  path=usr/squid/share/errors/pt
+dir  path=usr/squid/share/errors/pt-br
 file path=usr/squid/share/errors/pt-br/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/pt-br/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/pt-br/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/pt-br/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/pt-br/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/pt-br/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/pt-br/ERR_CANNOT_FORWARD
@@ -1234,7 +1424,12 @@
 file path=usr/squid/share/errors/pt-br/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/pt-br/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/pt-br/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/pt-br/error-details.txt
+link path=usr/squid/share/errors/pt-pt target=pt
 file path=usr/squid/share/errors/pt/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/pt/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/pt/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/pt/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/pt/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/pt/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/pt/ERR_CANNOT_FORWARD
@@ -1271,7 +1466,14 @@
 file path=usr/squid/share/errors/pt/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/pt/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/pt/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/pt/error-details.txt
+dir  path=usr/squid/share/errors/ro
+link path=usr/squid/share/errors/ro-md target=ro
+link path=usr/squid/share/errors/ro-ro target=ro
 file path=usr/squid/share/errors/ro/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ro/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ro/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ro/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ro/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ro/ERR_CANNOT_FORWARD
@@ -1308,7 +1510,13 @@
 file path=usr/squid/share/errors/ro/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ro/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ro/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ro/error-details.txt
+dir  path=usr/squid/share/errors/ru
+link path=usr/squid/share/errors/ru-ru target=ru
 file path=usr/squid/share/errors/ru/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/ru/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/ru/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/ru/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/ru/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/ru/ERR_CANNOT_FORWARD
@@ -1345,7 +1553,13 @@
 file path=usr/squid/share/errors/ru/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/ru/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/ru/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/ru/error-details.txt
+dir  path=usr/squid/share/errors/sk
+link path=usr/squid/share/errors/sk-sk target=sk
 file path=usr/squid/share/errors/sk/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/sk/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/sk/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/sk/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/sk/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/sk/ERR_CANNOT_FORWARD
@@ -1382,7 +1596,56 @@
 file path=usr/squid/share/errors/sk/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/sk/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/sk/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/sk/error-details.txt
+dir  path=usr/squid/share/errors/sl
+link path=usr/squid/share/errors/sl-si target=sl
+file path=usr/squid/share/errors/sl/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/sl/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/sl/ERR_AGENT_WPAD
+file path=usr/squid/share/errors/sl/ERR_CACHE_ACCESS_DENIED
+file path=usr/squid/share/errors/sl/ERR_CACHE_MGR_ACCESS_DENIED
+file path=usr/squid/share/errors/sl/ERR_CANNOT_FORWARD
+file path=usr/squid/share/errors/sl/ERR_CONNECT_FAIL
+file path=usr/squid/share/errors/sl/ERR_DIR_LISTING
+file path=usr/squid/share/errors/sl/ERR_DNS_FAIL
+file path=usr/squid/share/errors/sl/ERR_ESI
+file path=usr/squid/share/errors/sl/ERR_FORWARDING_DENIED
+file path=usr/squid/share/errors/sl/ERR_FTP_DISABLED
+file path=usr/squid/share/errors/sl/ERR_FTP_FAILURE
+file path=usr/squid/share/errors/sl/ERR_FTP_FORBIDDEN
+file path=usr/squid/share/errors/sl/ERR_FTP_NOT_FOUND
+file path=usr/squid/share/errors/sl/ERR_FTP_PUT_CREATED
+file path=usr/squid/share/errors/sl/ERR_FTP_PUT_ERROR
+file path=usr/squid/share/errors/sl/ERR_FTP_PUT_MODIFIED
+file path=usr/squid/share/errors/sl/ERR_FTP_UNAVAILABLE
+file path=usr/squid/share/errors/sl/ERR_GATEWAY_FAILURE
+file path=usr/squid/share/errors/sl/ERR_ICAP_FAILURE
+file path=usr/squid/share/errors/sl/ERR_INVALID_REQ
+file path=usr/squid/share/errors/sl/ERR_INVALID_RESP
+file path=usr/squid/share/errors/sl/ERR_INVALID_URL
+file path=usr/squid/share/errors/sl/ERR_LIFETIME_EXP
+file path=usr/squid/share/errors/sl/ERR_NO_RELAY
+file path=usr/squid/share/errors/sl/ERR_ONLY_IF_CACHED_MISS
+file path=usr/squid/share/errors/sl/ERR_PRECONDITION_FAILED
+file path=usr/squid/share/errors/sl/ERR_READ_ERROR
+file path=usr/squid/share/errors/sl/ERR_READ_TIMEOUT
+file path=usr/squid/share/errors/sl/ERR_SECURE_CONNECT_FAIL
+file path=usr/squid/share/errors/sl/ERR_SHUTTING_DOWN
+file path=usr/squid/share/errors/sl/ERR_SOCKET_FAILURE
+file path=usr/squid/share/errors/sl/ERR_TOO_BIG
+file path=usr/squid/share/errors/sl/ERR_UNSUP_HTTPVERSION
+file path=usr/squid/share/errors/sl/ERR_UNSUP_REQ
+file path=usr/squid/share/errors/sl/ERR_URN_RESOLVE
+file path=usr/squid/share/errors/sl/ERR_WRITE_ERROR
+file path=usr/squid/share/errors/sl/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/sl/error-details.txt
+link path=usr/squid/share/errors/sr target=sr-latn
+dir  path=usr/squid/share/errors/sr-cyrl
 file path=usr/squid/share/errors/sr-cyrl/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/sr-cyrl/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/sr-cyrl/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/sr-cyrl/ERR_CANNOT_FORWARD
@@ -1419,7 +1682,13 @@
 file path=usr/squid/share/errors/sr-cyrl/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/sr-cyrl/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/sr-cyrl/error-details.txt
+dir  path=usr/squid/share/errors/sr-latn
+link path=usr/squid/share/errors/sr-latn-cs target=sr-latn
 file path=usr/squid/share/errors/sr-latn/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/sr-latn/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/sr-latn/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/sr-latn/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/sr-latn/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/sr-latn/ERR_CANNOT_FORWARD
@@ -1456,7 +1725,15 @@
 file path=usr/squid/share/errors/sr-latn/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/sr-latn/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/sr-latn/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/sr-latn/error-details.txt
+link path=usr/squid/share/errors/sr-sp target=sr-latn
+dir  path=usr/squid/share/errors/sv
+link path=usr/squid/share/errors/sv-fi target=sv
+link path=usr/squid/share/errors/sv-se target=sv
 file path=usr/squid/share/errors/sv/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/sv/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/sv/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/sv/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/sv/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/sv/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/sv/ERR_CANNOT_FORWARD
@@ -1493,7 +1770,12 @@
 file path=usr/squid/share/errors/sv/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/sv/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/sv/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/sv/error-details.txt
+dir  path=usr/squid/share/errors/templates
 file path=usr/squid/share/errors/templates/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/templates/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/templates/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/templates/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/templates/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/templates/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/templates/ERR_CANNOT_FORWARD
@@ -1530,7 +1812,13 @@
 file path=usr/squid/share/errors/templates/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/templates/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/templates/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/templates/error-details.txt
+dir  path=usr/squid/share/errors/th
+link path=usr/squid/share/errors/th-th target=th
 file path=usr/squid/share/errors/th/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/th/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/th/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/th/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/th/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/th/ERR_CANNOT_FORWARD
@@ -1567,7 +1855,13 @@
 file path=usr/squid/share/errors/th/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/th/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/th/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/th/error-details.txt
+dir  path=usr/squid/share/errors/tr
+link path=usr/squid/share/errors/tr-tr target=tr
 file path=usr/squid/share/errors/tr/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/tr/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/tr/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/tr/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/tr/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/tr/ERR_CANNOT_FORWARD
@@ -1604,7 +1898,13 @@
 file path=usr/squid/share/errors/tr/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/tr/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/tr/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/tr/error-details.txt
+dir  path=usr/squid/share/errors/uk
+link path=usr/squid/share/errors/uk-ua target=uk
 file path=usr/squid/share/errors/uk/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/uk/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/uk/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/uk/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/uk/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/uk/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/uk/ERR_CANNOT_FORWARD
@@ -1641,7 +1941,12 @@
 file path=usr/squid/share/errors/uk/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/uk/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/uk/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/uk/error-details.txt
+dir  path=usr/squid/share/errors/uz
 file path=usr/squid/share/errors/uz/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/uz/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/uz/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/uz/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/uz/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/uz/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/uz/ERR_CANNOT_FORWARD
@@ -1678,7 +1983,13 @@
 file path=usr/squid/share/errors/uz/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/uz/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/uz/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/uz/error-details.txt
+dir  path=usr/squid/share/errors/vi
+link path=usr/squid/share/errors/vi-vn target=vi
 file path=usr/squid/share/errors/vi/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/vi/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/vi/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/vi/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/vi/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/vi/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/vi/ERR_CANNOT_FORWARD
@@ -1715,7 +2026,12 @@
 file path=usr/squid/share/errors/vi/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/vi/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/vi/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/vi/error-details.txt
+dir  path=usr/squid/share/errors/zh-cn
 file path=usr/squid/share/errors/zh-cn/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/zh-cn/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/zh-cn/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/zh-cn/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/zh-cn/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/zh-cn/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/zh-cn/ERR_CANNOT_FORWARD
@@ -1752,7 +2068,15 @@
 file path=usr/squid/share/errors/zh-cn/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/zh-cn/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/zh-cn/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/zh-cn/error-details.txt
+link path=usr/squid/share/errors/zh-hk target=zh-tw
+link path=usr/squid/share/errors/zh-mo target=zh-tw
+link path=usr/squid/share/errors/zh-sg target=zh-cn
+dir  path=usr/squid/share/errors/zh-tw
 file path=usr/squid/share/errors/zh-tw/ERR_ACCESS_DENIED
+file path=usr/squid/share/errors/zh-tw/ERR_ACL_TIME_QUOTA_EXCEEDED
+file path=usr/squid/share/errors/zh-tw/ERR_AGENT_CONFIGURE
+file path=usr/squid/share/errors/zh-tw/ERR_AGENT_WPAD
 file path=usr/squid/share/errors/zh-tw/ERR_CACHE_ACCESS_DENIED
 file path=usr/squid/share/errors/zh-tw/ERR_CACHE_MGR_ACCESS_DENIED
 file path=usr/squid/share/errors/zh-tw/ERR_CANNOT_FORWARD
@@ -1789,6 +2113,8 @@
 file path=usr/squid/share/errors/zh-tw/ERR_URN_RESOLVE
 file path=usr/squid/share/errors/zh-tw/ERR_WRITE_ERROR
 file path=usr/squid/share/errors/zh-tw/ERR_ZERO_SIZE_OBJECT
+file path=usr/squid/share/errors/zh-tw/error-details.txt
+dir  path=usr/squid/share/icons
 file path=usr/squid/share/icons/anthony-binhex.gif
 file path=usr/squid/share/icons/anthony-bomb.gif
 file path=usr/squid/share/icons/anthony-box.gif
@@ -1817,106 +2143,3 @@
 file path=usr/squid/share/icons/anthony-xbm.gif
 file path=usr/squid/share/icons/anthony-xpm.gif
 file path=usr/squid/share/mib.txt
-license squid.license license=GPLv2
-link path=usr/squid/share/errors/ar-ae target=ar
-link path=usr/squid/share/errors/ar-bh target=ar
-link path=usr/squid/share/errors/ar-dz target=ar
-link path=usr/squid/share/errors/ar-eg target=ar
-link path=usr/squid/share/errors/ar-iq target=ar
-link path=usr/squid/share/errors/ar-jo target=ar
-link path=usr/squid/share/errors/ar-kw target=ar
-link path=usr/squid/share/errors/ar-lb target=ar
-link path=usr/squid/share/errors/ar-ly target=ar
-link path=usr/squid/share/errors/ar-ma target=ar
-link path=usr/squid/share/errors/ar-om target=ar
-link path=usr/squid/share/errors/ar-qa target=ar
-link path=usr/squid/share/errors/ar-sa target=ar
-link path=usr/squid/share/errors/ar-sy target=ar
-link path=usr/squid/share/errors/ar-tn target=ar
-link path=usr/squid/share/errors/ar-ye target=ar
-link path=usr/squid/share/errors/az-az target=az
-link path=usr/squid/share/errors/bg-bg target=bg
-link path=usr/squid/share/errors/cs-cz target=cs
-link path=usr/squid/share/errors/da-dk target=da
-link path=usr/squid/share/errors/de-at target=de
-link path=usr/squid/share/errors/de-ch target=de
-link path=usr/squid/share/errors/de-de target=de
-link path=usr/squid/share/errors/de-li target=de
-link path=usr/squid/share/errors/de-lu target=de
-link path=usr/squid/share/errors/el-gr target=el
-link path=usr/squid/share/errors/en-au target=en
-link path=usr/squid/share/errors/en-bz target=en
-link path=usr/squid/share/errors/en-ca target=en
-link path=usr/squid/share/errors/en-gb target=en
-link path=usr/squid/share/errors/en-ie target=en
-link path=usr/squid/share/errors/en-in target=en
-link path=usr/squid/share/errors/en-jm target=en
-link path=usr/squid/share/errors/en-nz target=en
-link path=usr/squid/share/errors/en-ph target=en
-link path=usr/squid/share/errors/en-sg target=en
-link path=usr/squid/share/errors/en-tt target=en
-link path=usr/squid/share/errors/en-uk target=en
-link path=usr/squid/share/errors/en-us target=en
-link path=usr/squid/share/errors/en-za target=en
-link path=usr/squid/share/errors/en-zw target=en
-link path=usr/squid/share/errors/es-ar target=es
-link path=usr/squid/share/errors/es-bo target=es
-link path=usr/squid/share/errors/es-cl target=es
-link path=usr/squid/share/errors/es-co target=es
-link path=usr/squid/share/errors/es-cr target=es
-link path=usr/squid/share/errors/es-do target=es
-link path=usr/squid/share/errors/es-ec target=es
-link path=usr/squid/share/errors/es-es target=es
-link path=usr/squid/share/errors/es-gt target=es
-link path=usr/squid/share/errors/es-hn target=es
-link path=usr/squid/share/errors/es-mx target=es
-link path=usr/squid/share/errors/es-ni target=es
-link path=usr/squid/share/errors/es-pa target=es
-link path=usr/squid/share/errors/es-pe target=es
-link path=usr/squid/share/errors/es-pr target=es
-link path=usr/squid/share/errors/es-py target=es
-link path=usr/squid/share/errors/es-sv target=es
-link path=usr/squid/share/errors/es-uy target=es
-link path=usr/squid/share/errors/es-ve target=es
-link path=usr/squid/share/errors/et-ee target=et
-link path=usr/squid/share/errors/fa-fa target=fa
-link path=usr/squid/share/errors/fa-ir target=fa
-link path=usr/squid/share/errors/fi-fi target=fi
-link path=usr/squid/share/errors/fr-be target=fr
-link path=usr/squid/share/errors/fr-ca target=fr
-link path=usr/squid/share/errors/fr-ch target=fr
-link path=usr/squid/share/errors/fr-fr target=fr
-link path=usr/squid/share/errors/fr-lu target=fr
-link path=usr/squid/share/errors/fr-mc target=fr
-link path=usr/squid/share/errors/he-il target=he
-link path=usr/squid/share/errors/hu-hu target=hu
-link path=usr/squid/share/errors/hy-am target=hy
-link path=usr/squid/share/errors/hy-armn target=hy
-link path=usr/squid/share/errors/id-id target=id
-link path=usr/squid/share/errors/it-ch target=it
-link path=usr/squid/share/errors/it-it target=it
-link path=usr/squid/share/errors/ja-jp target=ja
-link path=usr/squid/share/errors/ko-kp target=ko
-link path=usr/squid/share/errors/ko-kr target=ko
-link path=usr/squid/share/errors/lt-lt target=lt
-link path=usr/squid/share/errors/lv-lv target=lv
-link path=usr/squid/share/errors/ms-my target=ms
-link path=usr/squid/share/errors/nl-nl target=nl
-link path=usr/squid/share/errors/pl-pl target=pl
-link path=usr/squid/share/errors/pt-pt target=pt
-link path=usr/squid/share/errors/ro-md target=ro
-link path=usr/squid/share/errors/ro-ro target=ro
-link path=usr/squid/share/errors/ru-ru target=ru
-link path=usr/squid/share/errors/sk-sk target=sk
-link path=usr/squid/share/errors/sr target=sr-latn
-link path=usr/squid/share/errors/sr-latn-cs target=sr-latn
-link path=usr/squid/share/errors/sr-sp target=sr-latn
-link path=usr/squid/share/errors/sv-fi target=sv
-link path=usr/squid/share/errors/sv-se target=sv
-link path=usr/squid/share/errors/th-th target=th
-link path=usr/squid/share/errors/tr-tr target=tr
-link path=usr/squid/share/errors/uk-ua target=uk
-link path=usr/squid/share/errors/vi-vn target=vi
-link path=usr/squid/share/errors/zh-hk target=zh-tw
-link path=usr/squid/share/errors/zh-mo target=zh-tw
-link path=usr/squid/share/errors/zh-sg target=zh-cn