From nobody@FreeBSD.org  Sat Oct 27 14:13:34 2012
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id B5CF0249
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 27 Oct 2012 14:13:34 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 8521F8FC08
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 27 Oct 2012 14:13:34 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.5/8.14.5) with ESMTP id q9REDY8K002041
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 27 Oct 2012 14:13:34 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.5/8.14.5/Submit) id q9REDYNF002040;
	Sat, 27 Oct 2012 14:13:34 GMT
	(envelope-from nobody)
Message-Id: <201210271413.q9REDYNF002040@red.freebsd.org>
Date: Sat, 27 Oct 2012 14:13:34 GMT
From: Hideyuki Hakotani <hakotani000@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: usr.sbin/bsdinstall/scripts/auto awk parameter need from $4 to $8
X-Send-Pr-Version: www-3.1
X-GNATS-Notify:

>Number:         173140
>Category:       bin
>Synopsis:       bsdinstall(8): scripts/auto awk parameter need from $4 to $8
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    dteske
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Sat Oct 27 14:20:00 UTC 2012
>Closed-Date:    Sun Oct 28 17:03:44 UTC 2012
>Last-Modified:  Sun Oct 28 17:03:44 UTC 2012
>Originator:     Hideyuki Hakotani
>Release:        -Current r241902
>Organization:
>Environment:
FreeBSD riku.tsr1.dip.jp 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sat Oct 20 14:47:40 JST 2012     root@riku.tsr1.dip.jp:/usr/obj/usr/src/sys/AAA  amd64

>Description:
DISTMENU=`awk '!/^(kernel|base)/{print $4,$5,$6}' $BSDINSTALL_DISTDIR/MANIFEST`

DISTMENU is bad.
>How-To-Repeat:

>Fix:
DISTMENU=`awk '!/^(kernel|base)/{print $4,$5,$6,$7,$8}' $BSDINSTALL_DISTDIR/MANIFEST`

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-bugs->freebsd-sysinstall 
Responsible-Changed-By: eadler 
Responsible-Changed-When: Sat Oct 27 15:09:12 UTC 2012 
Responsible-Changed-Why:  
fix synopsis and assign 

http://www.freebsd.org/cgi/query-pr.cgi?pr=173140 
Responsible-Changed-From-To: freebsd-sysinstall->dteske 
Responsible-Changed-By: dteske 
Responsible-Changed-When: Sat Oct 27 15:34:27 UTC 2012 
Responsible-Changed-Why:  


http://www.freebsd.org/cgi/query-pr.cgi?pr=173140 

From: Devin Teske <devin.teske@fisglobal.com>
To: <bug-followup@FreeBSD.org>, <hakotani000@gmail.com>
Cc:  
Subject: Re: bin/173140: bsdinstall(8): scripts/auto awk parameter need from $4 to $8
Date: Sat, 27 Oct 2012 10:55:35 -0700

 --Apple-Mail=_AC7A4AB5-0C63-4EA3-8EFD-D49C53DB8F5E
 Content-Transfer-Encoding: quoted-printable
 Content-Type: text/plain; charset="us-ascii"
 
 This one is my fault (introduced in r241902).
 
 The following attached patch.txt should fix this (and without any objection=
 s, I'll move forward with the commit).
 --=20
 Devin
 
 _____________
 The information contained in this message is proprietary and/or confidentia=
 l. If you are not the intended recipient, please: (i) delete the message an=
 d all copies; (ii) do not disclose, distribute or use the message in any ma=
 nner; and (iii) notify the sender immediately. In addition, please be aware=
  that any message addressed to our domain is subject to archiving and revie=
 w by persons other than the intended recipient. Thank you.
 
 --Apple-Mail=_AC7A4AB5-0C63-4EA3-8EFD-D49C53DB8F5E
 Content-Disposition: attachment; filename="patch.txt"
 Content-Type: text/plain; name="patch.txt"
 Content-Transfer-Encoding: quoted-printable
 
 Index: bsdinstall/scripts/auto
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
 --- bsdinstall/scripts/auto	(revision 242114)
 +++ bsdinstall/scripts/auto	(working copy)
 @@ -53,7 +53,7 @@ bsdinstall hostname || error
 =20
  export DISTRIBUTIONS=3D"base.txz kernel.txz"
  if [ -f $BSDINSTALL_DISTDIR/MANIFEST ]; then
 -	DISTMENU=3D`awk '!/^(kernel|base)/{print $4,$5,$6}' =
 $BSDINSTALL_DISTDIR/MANIFEST`
 +	DISTMENU=3D`awk -F'\t' '!/^(kernel|base)/{print $4,$5,$6}' =
 $BSDINSTALL_DISTDIR/MANIFEST`
 =20
  	exec 3>&1
  	EXTRA_DISTS=3D$( eval dialog \
 
 --Apple-Mail=_AC7A4AB5-0C63-4EA3-8EFD-D49C53DB8F5E--
State-Changed-From-To: open->patched 
State-Changed-By: dteske 
State-Changed-When: Sat Oct 27 19:57:37 UTC 2012 
State-Changed-Why:  
Committed to HEAD as r242188 

http://www.freebsd.org/cgi/query-pr.cgi?pr=173140 
State-Changed-From-To: patched->closed 
State-Changed-By: dteske 
State-Changed-When: Sun Oct 28 17:02:30 UTC 2012 
State-Changed-Why:  
Hideyuki (OP) sends mail "Thank you. patch is good." 

http://www.freebsd.org/cgi/query-pr.cgi?pr=173140 
>Unformatted:
