From owner-svn-ports-all@FreeBSD.ORG Mon Oct 28 00:06:50 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id F2396F12; Mon, 28 Oct 2013 00:06:49 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DFFD925BD; Mon, 28 Oct 2013 00:06:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9S06nuw094275; Mon, 28 Oct 2013 00:06:49 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9S06npO094272; Mon, 28 Oct 2013 00:06:49 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201310280006.r9S06npO094272@svn.freebsd.org> From: Colin Percival Date: Mon, 28 Oct 2013 00:06:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r331815 - in head/sysutils/firstboot-freebsd-update: . 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.14 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, 28 Oct 2013 00:06:50 -0000 Author: cperciva Date: Mon Oct 28 00:06:49 2013 New Revision: 331815 URL: http://svnweb.freebsd.org/changeset/ports/331815 Log: Set ${firstboot_freebsd_update_enable} to NO by default. Bump version to 1.1 for the change. Modified: head/sysutils/firstboot-freebsd-update/Makefile head/sysutils/firstboot-freebsd-update/files/firstboot_freebsd_update.in Modified: head/sysutils/firstboot-freebsd-update/Makefile ============================================================================== --- head/sysutils/firstboot-freebsd-update/Makefile Mon Oct 28 00:00:00 2013 (r331814) +++ head/sysutils/firstboot-freebsd-update/Makefile Mon Oct 28 00:06:49 2013 (r331815) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= firstboot-freebsd-update -PORTVERSION= 1.0 +PORTVERSION= 1.1 CATEGORIES= sysutils MASTER_SITES= # none DISTFILES= # none Modified: head/sysutils/firstboot-freebsd-update/files/firstboot_freebsd_update.in ============================================================================== --- head/sysutils/firstboot-freebsd-update/files/firstboot_freebsd_update.in Mon Oct 28 00:00:00 2013 (r331814) +++ head/sysutils/firstboot-freebsd-update/files/firstboot_freebsd_update.in Mon Oct 28 00:06:49 2013 (r331815) @@ -5,8 +5,15 @@ # REQUIRE: syslogd NETWORKING # BEFORE: LOGIN +# Add the following lines to /etc/rc.conf.local or /etc/rc.conf (in the disk +# image, since this only runs on the first boot) to enable this: +# +# firstboot_freebsd_update_enable="YES" + . /etc/rc.subr +: ${firstboot_freebsd_update_enable:="NO"} + name="firstboot_freebsd_update" rcvar=firstboot_freebsd_update_enable start_cmd="firstboot_freebsd_update_run | logger -s -t 'freebsd-update'"