From owner-freebsd-stable@FreeBSD.ORG Mon Mar 5 14:10:32 2007 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 318FA16A405 for ; Mon, 5 Mar 2007 14:10:32 +0000 (UTC) (envelope-from bsd-unix@earthlink.net) Received: from fall-lakeland.atl.sa.earthlink.net (fall-lakeland.atl.sa.earthlink.net [207.69.195.103]) by mx1.freebsd.org (Postfix) with ESMTP id 0B68C13C48E for ; Mon, 5 Mar 2007 14:10:32 +0000 (UTC) (envelope-from bsd-unix@earthlink.net) Received: from pop-siberian.atl.sa.earthlink.net ([207.69.195.71]) by fall-lakeland.atl.sa.earthlink.net with esmtp (Exim 4.34) id 1HODf4-0006Hc-Qs for freebsd-stable@freebsd.org; Mon, 05 Mar 2007 08:55:34 -0500 Received: from fl-71-54-28-212.dhcp.embarqhsd.net ([71.54.28.212] helo=kt.weeeble.com) by pop-siberian.atl.sa.earthlink.net with smtp (Exim 3.36 #1) id 1HODf3-0006Hr-00; Mon, 05 Mar 2007 08:55:33 -0500 Date: Mon, 5 Mar 2007 08:55:32 -0500 From: Randy Pratt To: "Stephane Thomas" Message-Id: <20070305085532.ec79a7e4.bsd-unix@earthlink.net> In-Reply-To: References: X-Mailer: Sylpheed 2.3.1 (GTK+ 2.10.9; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-stable@freebsd.org Subject: Re: Portaudit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Mar 2007 14:10:32 -0000 On Mon, 5 Mar 2007 13:55:50 +0100 "Stephane Thomas" wrote: > Hello, > > I just installed portaudit and now I cannot build mozilla anymore because of > three vulnerabilities. Is there a way to force building of a port even if > there are knows vulnerabilities ? I guess I can add some portaudit_fixed= > lines in /usr/local/etc/portaudit.conf but as the vulnerabilities aren't > really fixed I'm not sure this is the right thing to do. > > I read portaudit's man and freebsd handbook but I can't figure out the good > method. Thx in advance. If you're sure you want to override portaudit you can use make DISABLE_VULNERABILITIES=yes followed by any other arguments for building a port (see man 7 ports). If you want to disable portaudit for portupgrade, use something like: portupgrade -m "DISABLE_VULNERABILITIES=yes" followed by any other arguments needed. HTH, Randy --