From owner-svn-ports-all@freebsd.org Tue Nov 29 14:56:49 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D30ABC5C340; Tue, 29 Nov 2016 14:56:49 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 941D914A1; Tue, 29 Nov 2016 14:56:49 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uATEumAR002015; Tue, 29 Nov 2016 14:56:48 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uATEumer002011; Tue, 29 Nov 2016 14:56:48 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201611291456.uATEumer002011@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Tue, 29 Nov 2016 14:56:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427381 - in head/www: varnish4 varnish4/files varnish5 varnish5/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Nov 2016 14:56:49 -0000 Author: feld Date: Tue Nov 29 14:56:48 2016 New Revision: 427381 URL: https://svnweb.freebsd.org/changeset/ports/427381 Log: www/varnish4 www/varnish5: Change default hash algorithm The default hash algorithm as of Varnish 2.1 is "critbit". The FreeBSD varnish ports/packages have run the varnish daemon with the "classic" algorithm due to an oversight. This update corrects the default to adhere to the recommendation of upstream. Submitted by: Mark Staudinger Modified: head/www/varnish4/Makefile head/www/varnish4/files/varnishd.in head/www/varnish5/Makefile head/www/varnish5/files/varnishd.in Modified: head/www/varnish4/Makefile ============================================================================== --- head/www/varnish4/Makefile Tue Nov 29 14:52:37 2016 (r427380) +++ head/www/varnish4/Makefile Tue Nov 29 14:56:48 2016 (r427381) @@ -2,7 +2,7 @@ PORTNAME= varnish PORTVERSION= 4.1.3 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://repo.varnish-cache.org/source/ PKGNAMESUFFIX= 4 Modified: head/www/varnish4/files/varnishd.in ============================================================================== --- head/www/varnish4/files/varnishd.in Tue Nov 29 14:52:37 2016 (r427380) +++ head/www/varnish4/files/varnishd.in Tue Nov 29 14:56:48 2016 (r427381) @@ -32,7 +32,7 @@ # default: unset. # # varnishd_hash - hash algorithm -# default: "classic,16383" +# default: "critbit" # # varnishd_storage - storage method and parameters. # default: "file,/tmp,100M" @@ -60,7 +60,7 @@ load_rc_config ${name} : ${varnishd_admin=localhost:81} : ${varnishd_backend=localhost:8080} : ${varnishd_storage=file,/tmp,100M} -: ${varnishd_hash=classic,16383} +: ${varnishd_hash=critbit} : ${varnishd_jailuser=varnish} command="%%PREFIX%%/sbin/${name}" Modified: head/www/varnish5/Makefile ============================================================================== --- head/www/varnish5/Makefile Tue Nov 29 14:52:37 2016 (r427380) +++ head/www/varnish5/Makefile Tue Nov 29 14:56:48 2016 (r427381) @@ -2,7 +2,7 @@ PORTNAME= varnish PORTVERSION= 5.0.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= http://repo.varnish-cache.org/source/ PKGNAMESUFFIX= 5 Modified: head/www/varnish5/files/varnishd.in ============================================================================== --- head/www/varnish5/files/varnishd.in Tue Nov 29 14:52:37 2016 (r427380) +++ head/www/varnish5/files/varnishd.in Tue Nov 29 14:56:48 2016 (r427381) @@ -32,7 +32,7 @@ # default: unset. # # varnishd_hash - hash algorithm -# default: "classic,16383" +# default: "critbit" # # varnishd_storage - storage method and parameters. # default: "file,/tmp,100M" @@ -60,7 +60,7 @@ load_rc_config ${name} : ${varnishd_admin=localhost:81} : ${varnishd_backend=localhost:8080} : ${varnishd_storage=file,/tmp,100M} -: ${varnishd_hash=classic,16383} +: ${varnishd_hash=critbit} : ${varnishd_jailuser=varnish} command="%%PREFIX%%/sbin/${name}"