From owner-svn-ports-head@freebsd.org Mon Oct 19 15:14:43 2015 Return-Path: Delivered-To: svn-ports-head@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 DD402A19132; Mon, 19 Oct 2015 15:14:43 +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 A5D67BC6; Mon, 19 Oct 2015 15:14:43 +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 t9JFEgjd032641; Mon, 19 Oct 2015 15:14:42 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9JFEg92032640; Mon, 19 Oct 2015 15:14:42 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201510191514.t9JFEg92032640@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Mon, 19 Oct 2015 15:14:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r399690 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Oct 2015 15:14:44 -0000 Author: feld Date: Mon Oct 19 15:14:42 2015 New Revision: 399690 URL: https://svnweb.freebsd.org/changeset/ports/399690 Log: Document file ownership changes for www/varnish4 update Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Mon Oct 19 15:05:16 2015 (r399689) +++ head/UPDATING Mon Oct 19 15:14:42 2015 (r399690) @@ -5,6 +5,26 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20151019: + AFFECTS: users of www/varnish4 + AUTHOR: feld@FreeBSD.org + + Varnish has been updated to 4.1.0. As part of the update an effort has + been made to increase the security of the varnish daemons by utilizing + separate UIDs. Users who upgrade will likely run into a permissions + issue as a result. The simplest solution is to delete files varnish + will recreate with the correct permissions and to adjust permissions + of existing log files. + + The following changes will allow you to start varnishd, varnishlog, + and varnishncsa successfully: + + # rm -r /usr/local/varnish/$(hostname) + # rm /var/run/varnishlog.pid + # rm /var/run/varnishncsa.pid + # chown varnishlog /var/log/varnish.log + # chown varnishlog /var/log/varnishncsa.log + 20151015: AFFECTS: users of devel/subversion, its bindings and www/mod_dav_svn AUTHOR: lev@FreeBSD.org