From owner-svn-ports-all@freebsd.org Mon Jan 8 13:38:49 2018 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 BE3BCE6D130; Mon, 8 Jan 2018 13:38:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 802257B7C7; Mon, 8 Jan 2018 13:38:49 +0000 (UTC) (envelope-from mat@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE95A506; Mon, 8 Jan 2018 13:38:48 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w08DcmqW089707; Mon, 8 Jan 2018 13:38:48 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w08Dcl3K089695; Mon, 8 Jan 2018 13:38:47 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201801081338.w08Dcl3K089695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 8 Jan 2018 13:38:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458413 - in head/dns: bind9-devel/files bind910 bind910/files bind911 bind911/files bind912 bind912/files bind99 bind99/files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/dns: bind9-devel/files bind910 bind910/files bind911 bind911/files bind912 bind912/files bind99 bind99/files X-SVN-Commit-Revision: 458413 X-SVN-Commit-Repository: ports 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.25 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: Mon, 08 Jan 2018 13:38:49 -0000 Author: mat Date: Mon Jan 8 13:38:47 2018 New Revision: 458413 URL: https://svnweb.freebsd.org/changeset/ports/458413 Log: Fix altlog_proglist warning when it contains more than the named service. PR: 224951 Submitted by: Trix Farrar Sponsored by: Absolight Modified: head/dns/bind9-devel/files/named.in head/dns/bind910/Makefile (contents, props changed) head/dns/bind910/files/named.in head/dns/bind911/Makefile (contents, props changed) head/dns/bind911/files/named.in head/dns/bind912/Makefile (contents, props changed) head/dns/bind912/files/named.in head/dns/bind99/Makefile (contents, props changed) head/dns/bind99/files/named.in Modified: head/dns/bind9-devel/files/named.in ============================================================================== --- head/dns/bind9-devel/files/named.in Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind9-devel/files/named.in Mon Jan 8 13:38:47 2018 (r458413) @@ -324,7 +324,7 @@ named_prestart() checkyesno named_chroot_autoupdate && chroot_autoupdate case "${altlog_proglist}" in - named) + *named*) ;; *) warn 'Using chroot without setting altlog_proglist, logging may not' Modified: head/dns/bind910/Makefile ============================================================================== --- head/dns/bind910/Makefile Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind910/Makefile Mon Jan 8 13:38:47 2018 (r458413) @@ -3,7 +3,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} PKGNAMESUFFIX= 910 Modified: head/dns/bind910/files/named.in ============================================================================== --- head/dns/bind910/files/named.in Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind910/files/named.in Mon Jan 8 13:38:47 2018 (r458413) @@ -324,7 +324,7 @@ named_prestart() checkyesno named_chroot_autoupdate && chroot_autoupdate case "${altlog_proglist}" in - named) + *named*) ;; *) warn 'Using chroot without setting altlog_proglist, logging may not' Modified: head/dns/bind911/Makefile ============================================================================== --- head/dns/bind911/Makefile Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind911/Makefile Mon Jan 8 13:38:47 2018 (r458413) @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc PORTREVISION= 2 .else # dns/bind911 here -PORTREVISION= 5 +PORTREVISION= 6 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} Modified: head/dns/bind911/files/named.in ============================================================================== --- head/dns/bind911/files/named.in Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind911/files/named.in Mon Jan 8 13:38:47 2018 (r458413) @@ -324,7 +324,7 @@ named_prestart() checkyesno named_chroot_autoupdate && chroot_autoupdate case "${altlog_proglist}" in - named) + *named*) ;; *) warn 'Using chroot without setting altlog_proglist, logging may not' Modified: head/dns/bind912/Makefile ============================================================================== --- head/dns/bind912/Makefile Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind912/Makefile Mon Jan 8 13:38:47 2018 (r458413) @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc PORTREVISION= 0 .else # dns/bind912 here -PORTREVISION= 1 +PORTREVISION= 2 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} Modified: head/dns/bind912/files/named.in ============================================================================== --- head/dns/bind912/files/named.in Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind912/files/named.in Mon Jan 8 13:38:47 2018 (r458413) @@ -324,7 +324,7 @@ named_prestart() checkyesno named_chroot_autoupdate && chroot_autoupdate case "${altlog_proglist}" in - named) + *named*) ;; *) warn 'Using chroot without setting altlog_proglist, logging may not' Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind99/Makefile Mon Jan 8 13:38:47 2018 (r458413) @@ -3,7 +3,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} PKGNAMESUFFIX= 99 Modified: head/dns/bind99/files/named.in ============================================================================== --- head/dns/bind99/files/named.in Mon Jan 8 13:38:43 2018 (r458412) +++ head/dns/bind99/files/named.in Mon Jan 8 13:38:47 2018 (r458413) @@ -312,7 +312,7 @@ named_prestart() checkyesno named_chroot_autoupdate && chroot_autoupdate case "${altlog_proglist}" in - named) + *named*) ;; *) warn 'Using chroot without setting altlog_proglist, logging may not'