From owner-freebsd-questions@FreeBSD.ORG Fri Dec 29 12:08:38 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5E17216A403 for ; Fri, 29 Dec 2006 12:08:38 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from turtle-out.mxes.net (turtle-out.mxes.net [216.86.168.191]) by mx1.freebsd.org (Postfix) with ESMTP id 3487213C467 for ; Fri, 29 Dec 2006 12:08:38 +0000 (UTC) (envelope-from fbsd06@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by turtle-in.mxes.net (Postfix) with ESMTP id 12A601056D for ; Thu, 28 Dec 2006 21:21:50 -0500 (EST) Received: from gumby.homeunix.com (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id 2D56B51930 for ; Thu, 28 Dec 2006 21:20:49 -0500 (EST) Date: Fri, 29 Dec 2006 02:20:46 +0000 From: RW To: freebsd-questions@freebsd.org Message-ID: <20061229022046.0ba97c97@gumby.homeunix.com> In-Reply-To: <20061228184851.UXJH60.dukecmmtao03.coxmail.com@dukecmmtao03> References: <20061228184851.UXJH60.dukecmmtao03.coxmail.com@dukecmmtao03> X-Mailer: Sylpheed-Claws 2.6.0 (GTK+ 2.10.6; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: portupgrade -a useful option?? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Dec 2006 12:08:38 -0000 On Thu, 28 Dec 2006 10:48:50 -0800 Vizion wrote: > Gi > > I just wondered whether using portupgrade -a there might be any way > to have an initial interactive dialogue to set all option for all > ports to be upgraded during the run so as to facilitate an attendance > free upgrade procedure. > > Maybe there is already some way to do this - if so perhaps someone > could enlighten me. I use this shell script: #!/bin/sh plist=`pkg_version -ovl'<' |awk '{ print $1 }'` for porg in $plist ; do cd /usr/ports/${porg} && make config-recursive done