From owner-svn-ports-all@FreeBSD.ORG Tue Mar 31 15:03:01 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 94FCEAEB; Tue, 31 Mar 2015 15:03:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 7695A125; Tue, 31 Mar 2015 15:03:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2VF31UO038875; Tue, 31 Mar 2015 15:03:01 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2VF3069038866; Tue, 31 Mar 2015 15:03:00 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201503311503.t2VF3069038866@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 31 Mar 2015 15:03:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382829 - in head/dns: bind910 bind910/files bind99 bind99/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.18-1 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, 31 Mar 2015 15:03:01 -0000 Author: mat Date: Tue Mar 31 15:02:59 2015 New Revision: 382829 URL: https://svnweb.freebsd.org/changeset/ports/382829 QAT: https://qat.redports.org/buildarchive/r382829/ Log: Enhance the error message when running from a jail without devfs. Sponsored by: Absolight Modified: head/dns/bind910/Makefile head/dns/bind910/files/named.in head/dns/bind99/Makefile head/dns/bind99/files/named.in Modified: head/dns/bind910/Makefile ============================================================================== --- head/dns/bind910/Makefile Tue Mar 31 14:56:27 2015 (r382828) +++ head/dns/bind910/Makefile Tue Mar 31 15:02:59 2015 (r382829) @@ -7,7 +7,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/} PORTREVISION= 0 .else # dns/bind910 here -PORTREVISION= 1 +PORTREVISION= 2 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} Modified: head/dns/bind910/files/named.in ============================================================================== --- head/dns/bind910/files/named.in Tue Mar 31 14:56:27 2015 (r382828) +++ head/dns/bind910/files/named.in Tue Mar 31 15:02:59 2015 (r382829) @@ -130,11 +130,12 @@ chroot_autoupdate() -c ${named_chrootdir}/dev/random ]; then info "named chroot: using pre-mounted devfs." else - err 1 "named chroot: devfs cannot be mounted from" \ - "within a jail. Thus a chrooted named cannot" \ - "be run from within a jail." \ - "To run named without chrooting it, set" \ - "named_chrootdir=\"\" in /etc/rc.conf." + err 1 "named chroot: devfs cannot be mounted from " \ + "within a jail. Thus a chrooted named cannot " \ + "be run from within a jail. Either mount the " \ + "devfs with null and random from the host, or " \ + "run named without chrooting it, set" \ + "named_chrootdir=\"\" in /etc/rc.conf." fi fi Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Tue Mar 31 14:56:27 2015 (r382828) +++ head/dns/bind99/Makefile Tue Mar 31 15:02:59 2015 (r382829) @@ -2,7 +2,7 @@ PORTNAME= bind PORTVERSION= ${ISCVERSION:S/-P/P/} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} PKGNAMESUFFIX= 99 Modified: head/dns/bind99/files/named.in ============================================================================== --- head/dns/bind99/files/named.in Tue Mar 31 14:56:27 2015 (r382828) +++ head/dns/bind99/files/named.in Tue Mar 31 15:02:59 2015 (r382829) @@ -128,11 +128,12 @@ chroot_autoupdate() -c ${named_chrootdir}/dev/random ]; then info "named chroot: using pre-mounted devfs." else - err 1 "named chroot: devfs cannot be mounted from" \ - "within a jail. Thus a chrooted named cannot" \ - "be run from within a jail." \ - "To run named without chrooting it, set" \ - "named_chrootdir=\"\" in /etc/rc.conf." + err 1 "named chroot: devfs cannot be mounted from " \ + "within a jail. Thus a chrooted named cannot " \ + "be run from within a jail. Either mount the " \ + "devfs with null and random from the host, or " \ + "run named without chrooting it, set " \ + "named_chrootdir=\"\" in /etc/rc.conf." fi fi