From owner-freebsd-questions@FreeBSD.ORG Sat Feb 26 19:22:52 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81F8116A4CE for ; Sat, 26 Feb 2005 19:22:52 +0000 (GMT) Received: from rproxy.gmail.com (rproxy.gmail.com [64.233.170.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A25243D5A for ; Sat, 26 Feb 2005 19:22:52 +0000 (GMT) (envelope-from linicks@gmail.com) Received: by rproxy.gmail.com with SMTP id 1so507908rny for ; Sat, 26 Feb 2005 11:22:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=EQp6+FeISWnO33DfL/yvdpKRIjzu/I+u+HEnsV2nS8bs7zuKqIKN1bTts5g1m/eB70fV/I304EuZ7jFAw7FiTTwO87DknxdDzgjQhxwcocHIEnx2saUnayVKrQQaC+IO5hjr0OrftmW7oKVhP29nKzWkbePRqt2tHYQ42zEdsY0= Received: by 10.38.179.16 with SMTP id b16mr510195rnf; Sat, 26 Feb 2005 11:22:51 -0800 (PST) Received: by 10.38.8.69 with HTTP; Sat, 26 Feb 2005 11:22:51 -0800 (PST) Message-ID: Date: Sat, 26 Feb 2005 12:22:51 -0700 From: Nick Pavlica To: Chris Hodgins In-Reply-To: <4220959F.2020602@cis.strath.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <4220959F.2020602@cis.strath.ac.uk> cc: FreeBSD questions Subject: Re: Portupgrading - portauditing X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Nick Pavlica List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Feb 2005 19:22:52 -0000 I believe if you do a portuprade -arR you will also upgrade any dependant ports. On Sat, 26 Feb 2005 15:28:31 +0000, Chris Hodgins wrote: > George Katsanos wrote: > > > > Hello, > > > > Your team is ALWAYS very helpful . It's the best support i've ever dealt with. > > > > Question : How do i portupgrade , just the pkgs/ports that portaudit -a sais > > have vulnerabilities,and not the whole thing? > > > > Thank you > > > > > > G.K. > > _______________________________________________ > > freebsd-questions@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" > > > > Are you after a way to do this automatically or just a way to do it > generally? > > You basically want to run portaudit -a and portupgrade each "Affected > Package". You could probably script this quite easily: > > for i in `portaudit -a | grep "Affected package:" | awk '{print $3}'` > do > portupgrade $FLAGS $i > done > > Hope this is what you were after. :) > Chris > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" >