From owner-freebsd-questions@FreeBSD.ORG Sat Mar 11 09:52:02 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 D1E0016A41F for ; Sat, 11 Mar 2006 09:52:02 +0000 (GMT) (envelope-from beni.brinckman@dommel.be) Received: from laura.schedom-europe.net (laura.schedom-europe.net [193.109.184.68]) by mx1.FreeBSD.org (Postfix) with SMTP id 157A843D45 for ; Sat, 11 Mar 2006 09:52:01 +0000 (GMT) (envelope-from beni.brinckman@dommel.be) Received: (qmail 17404 invoked by alias); 11 Mar 2006 09:51:26 -0000 Received: from els.schedom-europe.net (193.109.184.81) by laura.schedom-europe.net with SMTP; 11 Mar 2006 09:51:26 -0000 Received: (qmail 18378 invoked from network); 11 Mar 2006 10:52:01 +0100 Received: from localhost (127.0.0.1) by localhost with SMTP; 11 Mar 2006 10:52:01 +0100 Received: from user8.silver1.brussel1.schedom-europe.net (user8.silver1.brussel1.schedom-europe.net [83.101.7.8]) by webmail.dommel.be (Horde MIME library) with HTTP for ; Sat, 11 Mar 2006 10:52:01 +0100 Message-ID: <20060311105201.p0d50a73fwys80s0@webmail.dommel.be> Date: Sat, 11 Mar 2006 10:52:01 +0100 From: beni.brinckman@dommel.be To: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.0.3) Subject: Re: make installworld fails 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: Sat, 11 Mar 2006 09:52:03 -0000 beni.brinckman@dommel.be wrote: > Hi all, > > After doing a svsup yesterday and doing a 'make -j4 buildworld' i've (my script > that is) tried to proceed with a 'make installworld'. But it failed : > > www# make installworld > ERROR: Required audit group is missing, see /usr/src/UPDATING. > *** Error code 1 > > Stop in /usr/src. > *** Error code 1 > > Stop in /usr/src. > > I have checked /usr/src/UPDATING but there isn't any entry new about new groups > and 'grep -w audit /etc/group' does not show any audit-group present. > > I also did a 'rm -rf /usr/obj/* ' and ran 'make -j4 buildworld' again, which > endend without errors but the following 'make installworld' stops with the > mentioned error again. > > I am using the '*default release=cvs tag=RELENG_6' in the supfile and am running > 6.1-PRERELEASE now. > > What am I doing wrong ? Any clues are welcome. The error message is wrong. There is a new group in '/etc/group' called 'audit:*:77:'. I recommend you don't automate mergemaster operations, and rerun the whole procedure manually. hth lars. Lars, This is the script in question : #!/bin/sh echo Subject: `hostname` weekly cvsup run output /usr/local/bin/cvsup -g -L 2 /root/supfile cd /usr/src echo =========================================== echo Make buildworld now... echo =========================================== make -j4 buildworld echo =========================================== echo Make buildkernel now... echo =========================================== make buildkernel KERNCONF=BENI-60 echo =========================================== echo Make installkernel now... echo =========================================== make installkernel KERNCONF=BENI-60 echo =========================================== echo Make installworld now... echo =========================================== make installworld echo =========================================== echo `date` : Build Completed echo =========================================== if [ $? -eq 0 ]; then echo =========================================== echo `date` : BENI-60 kernel build completed echo =========================================== else echo '**************************************' echo `date`: BENI-60 kernel build failed echo '**************************************' fi echo =========================================== echo updating portstree now... echo =========================================== /usr/sbin/portsnap fetch update echo =========================================== echo These ports need updating... echo =========================================== pkg_version -l '<' I didn't re-cvsup after doing the 'rm -rf /usr/obj/*', but did a manually 'make -j4 make buildworld' which ended without problems or errors. I don't mergemaster. If I manually add the group 'audit' the problem should be fixed ? Is this a new group or is it needed for some program ? Thanks, Beni.