From owner-freebsd-hubs Sun Dec 12 13: 9:22 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (Postfix) with ESMTP id A453514D2D for ; Sun, 12 Dec 1999 13:09:20 -0800 (PST) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id WAA13645 for hubs@FreeBSD.ORG; Sun, 12 Dec 1999 22:09:19 +0100 (CET) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by paula.panke.de.freebsd.org (8.9.3/8.8.8) id WAA02417; Sun, 12 Dec 1999 22:07:21 +0100 (CET) (envelope-from wosch) Date: Sun, 12 Dec 1999 22:07:21 +0100 From: Wolfram Schneider To: hubs@FreeBSD.ORG Subject: CVSup collections for NetBSD and OpenBSD CVS tree Message-ID: <19991212220721.A2409@paula.panke.de.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The CVSup server name is cvsup.de.freebsd.org Collection names for OpenBSD are: openbsd-src-all # Only OpenBSD CVS sources openbsd-ports-all # Only OpenBSD ports openbsd-www-all # Only OpenBSD web pages Update is daily with ctm. Collection names for NetBSD are: # NetBSD CVSROOT netbsd-base # NetBSD CVS documentation tree netbsd-doc # NetBSD CVS source tree netbsd-basesrc netbsd-gnusrc netbsd-sharesrc netbsd-syssrc The NetBSD sources are updated daily from ftp.netbsd.org For more information about CVSup, see http://www.freebsd.org/handbook/synching.html#CVSUP -- Wolfram Schneider http://wolfram.schneider.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message From owner-freebsd-hubs Mon Dec 13 13:25:55 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from ducky.nz.freebsd.org (chilled.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 0FC8F14BE9 for ; Mon, 13 Dec 1999 13:25:48 -0800 (PST) (envelope-from dan@langille.org) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id KAA03862 for ; Tue, 14 Dec 1999 10:25:45 +1300 (NZDT) Message-Id: <199912132125.KAA03862@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: freebsd-hubs@freebsd.org Date: Tue, 14 Dec 1999 10:25:43 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: cvsupd will not start Reply-To: dan@langille.org X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm having trouble getting cvsupd started on a new box. It runs fine on the old box. This problem occurs with both cvsup 16.1 and 16.0. # su -m cvsup -c "/usr/local/sbin/cvsupd -C 8 -l /var/log/cvsupd.log -s sup.client" Cannot become a daemon: Permission denied Ummm? Well, why can't you become a daemon? If I do this, cvsupd starts: /usr/local/sbin/cvsupd -C 8 -l /var/log/cvsupd.log -s sup.client Looking at the code, I find only one message pertaining to "Cannot become a daemon". I think the function BecomeDaemon is failing in ./cvsup-16.0/server/src/Main.m3. Here's the code: PROCEDURE BecomeDaemon() RAISES {OSError.E} = BEGIN WITH pid = Unix.fork() DO IF pid = -1 THEN (* Error. *) OSErrorPosix.Raise() ELSIF pid # 0 THEN (* Parent process. *) Unix.underscore_exit(0); END; END; (* This is the child process. *) IF UnixMisc.SetSID() = -1 THEN OSErrorPosix.Raise(); END; (* EVAL Unix.chdir(SupMisc.RootDir); FIXME - Not yet. *) END BecomeDaemon; With my reading, either Unix.fork() fails or we're the child process. Does anyone have any clues for me? The box in question is running 3.2- release. -- Dan Langille - DVL Software Limited [I'm looking for more work] The FreeBSD Diary - http://www.freebsddiary.org/freebsd/ NZ FreeBSD User Group - http://www.nzfug.nz.freebsd.org/ The Racing System - http://www.racingsystem.com/racingsystem.htm unix @ home - http://www.unixathome.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message From owner-freebsd-hubs Tue Dec 14 5: 7:33 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from ducky.nz.freebsd.org (chilled.unixathome.org [203.79.82.27]) by hub.freebsd.org (Postfix) with ESMTP id 5B29D14EF5 for ; Tue, 14 Dec 1999 05:07:28 -0800 (PST) (envelope-from dan@langille.org) Received: from wocker (wocker.int.nz.freebsd.org [192.168.0.99]) by ducky.nz.freebsd.org (8.9.3/8.9.3) with ESMTP id CAA09723 for ; Wed, 15 Dec 1999 02:07:26 +1300 (NZDT) Message-Id: <199912141307.CAA09723@ducky.nz.freebsd.org> From: "Dan Langille" Organization: langille.org To: freebsd-hubs@freebsd.org Date: Wed, 15 Dec 1999 02:07:23 +1300 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: cvsupd will not start Reply-To: dan@langille.org In-reply-to: <199912132125.KAA03862@ducky.nz.freebsd.org> X-mailer: Pegasus Mail for Win32 (v3.12a) Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 14 Dec 99, at 10:25, Dan Langille wrote: > I'm having trouble getting cvsupd started on a new box. It runs fine on > the old box. This problem occurs with both cvsup 16.1 and 16.0. > > # su -m cvsup -c "/usr/local/sbin/cvsupd -C 8 -l /var/log/cvsupd.log -s > sup.client" > Cannot become a daemon: Permission denied > > Ummm? Well, why can't you become a daemon? > > If I do this, cvsupd starts: > > /usr/local/sbin/cvsupd -C 8 -l /var/log/cvsupd.log -s sup.client > > Looking at the code, I find only one message pertaining to "Cannot > become a daemon". I think the function BecomeDaemon is failing in > ./cvsup-16.0/server/src/Main.m3. Here's the code: > > PROCEDURE BecomeDaemon() > RAISES {OSError.E} = > BEGIN > WITH pid = Unix.fork() DO > IF pid = -1 THEN (* Error. *) > OSErrorPosix.Raise() > ELSIF pid # 0 THEN (* Parent process. *) > Unix.underscore_exit(0); > END; > END; > > (* This is the child process. *) > > IF UnixMisc.SetSID() = -1 THEN > OSErrorPosix.Raise(); > END; > > (* EVAL Unix.chdir(SupMisc.RootDir); FIXME - Not yet. *) > END BecomeDaemon; > > With my reading, either Unix.fork() fails or we're the child process. > > Does anyone have any clues for me? The box in question is running 3.2- > release. I upgraded to 3.3-19991207-SNAP and the problem went away. I have no idea why. -- Dan Langille [I'm looking for more work] http://www.langille.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message From owner-freebsd-hubs Tue Dec 14 19:41:26 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id 5B2FB1536C for ; Tue, 14 Dec 1999 19:41:23 -0800 (PST) (envelope-from jdp@polstra.com) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.9.3/8.9.3) with ESMTP id TAA03270; Tue, 14 Dec 1999 19:41:21 -0800 (PST) (envelope-from jdp@polstra.com) From: John Polstra Received: (from jdp@localhost) by vashon.polstra.com (8.9.3/8.9.1) id TAA01829; Tue, 14 Dec 1999 19:41:21 -0800 (PST) (envelope-from jdp@polstra.com) Date: Tue, 14 Dec 1999 19:41:21 -0800 (PST) Message-Id: <199912150341.TAA01829@vashon.polstra.com> To: dan@langille.org Subject: Re: cvsupd will not start In-Reply-To: <199912141307.CAA09723@ducky.nz.freebsd.org> References: <199912141307.CAA09723@ducky.nz.freebsd.org> Organization: Polstra & Co., Seattle, WA Cc: hubs@freebsd.org Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <199912141307.CAA09723@ducky.nz.freebsd.org>, Dan Langille wrote: > On 14 Dec 99, at 10:25, Dan Langille wrote: > > > I'm having trouble getting cvsupd started on a new box. It runs fine on > > the old box. This problem occurs with both cvsup 16.1 and 16.0. > > > > # su -m cvsup -c "/usr/local/sbin/cvsupd -C 8 -l /var/log/cvsupd.log -s > > sup.client" > > Cannot become a daemon: Permission denied ... > > With my reading, either Unix.fork() fails or we're the child process. > > > > Does anyone have any clues for me? The box in question is running 3.2- > > release. > > > > I upgraded to 3.3-19991207-SNAP and the problem went away. I have > no idea why. > > Me neither. I think it probably failed in the setsid() call. It can raise EPERM if (according to the man page): [EPERM] The calling process is already a process group leader, or the process group ID of a process other than the calling process matches the process ID of the calling process. But I don't know why that happened to you. I've never gotten any other reports of this problem before. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "No matter how cynical I get, I just can't keep up." -- Nora Ephron To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message From owner-freebsd-hubs Wed Dec 15 12:47:37 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from piglet.dstc.edu.au (piglet.dstc.edu.au [130.102.176.1]) by hub.freebsd.org (Postfix) with ESMTP id BD56B15590 for ; Wed, 15 Dec 1999 12:47:29 -0800 (PST) (envelope-from jason@dstc.edu.au) Received: from azure.dstc.edu.au (azure.dstc.edu.au [130.102.176.27]) by piglet.dstc.edu.au (8.9.3/8.9.3) with ESMTP id GAA17920 for ; Thu, 16 Dec 1999 06:47:26 +1000 (EST) Date: Thu, 16 Dec 1999 06:47:26 +1000 (EST) From: jason andrade To: hubs@freebsd.org Subject: freebsd 3.4 ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, perhaps i missed this announcement, but freebsd 3.4 has been released somewhere ? because packages-3.4 (with a dec 12th timestamp) exists, though i can't see a 3.4 in the release area. -jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message From owner-freebsd-hubs Wed Dec 15 12:55:19 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id DB44715590 for ; Wed, 15 Dec 1999 12:55:13 -0800 (PST) (envelope-from jesper@skriver.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id E2C633E36; Wed, 15 Dec 1999 21:55:08 +0100 (CET) Date: Wed, 15 Dec 1999 21:55:08 +0100 From: Jesper Skriver To: jason andrade Cc: hubs@freebsd.org Subject: Re: freebsd 3.4 ? Message-ID: <19991215215508.A65539@skriver.dk> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from jason@dstc.edu.au on Thu, Dec 16, 1999 at 06:47:26AM +1000 Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Dec 16, 1999 at 06:47:26AM +1000, jason andrade wrote: > > hi, > > perhaps i missed this announcement, but freebsd 3.4 has > been released somewhere ? because packages-3.4 (with a dec 12th > timestamp) exists, though i can't see a 3.4 in the release > area. Not released yet, Jordan sent a message earlier today, that it was delayed 24 hours, so be patient ;-) /Jesper -- Jesper Skriver, jesper(at)skriver(dot)dk Work: Network manager @ AS3292 (Tele Danmark DataNetworks) Private: Geek @ AS2109 (A much smaller network ;-) One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message From owner-freebsd-hubs Wed Dec 15 12:58:32 1999 Delivered-To: freebsd-hubs@freebsd.org Received: from piglet.dstc.edu.au (piglet.dstc.edu.au [130.102.176.1]) by hub.freebsd.org (Postfix) with ESMTP id 258EC152E3 for ; Wed, 15 Dec 1999 12:58:28 -0800 (PST) (envelope-from jason@dstc.edu.au) Received: from azure.dstc.edu.au (azure.dstc.edu.au [130.102.176.27]) by piglet.dstc.edu.au (8.9.3/8.9.3) with ESMTP id GAA15914; Thu, 16 Dec 1999 06:58:14 +1000 (EST) Date: Thu, 16 Dec 1999 06:58:13 +1000 (EST) From: jason andrade To: Jesper Skriver Cc: hubs@freebsd.org Subject: Re: freebsd 3.4 ? In-Reply-To: <19991215215508.A65539@skriver.dk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hubs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 15 Dec 1999, Jesper Skriver wrote: > On Thu, Dec 16, 1999 at 06:47:26AM +1000, jason andrade wrote: > > > > hi, > > > > perhaps i missed this announcement, but freebsd 3.4 has > > been released somewhere ? because packages-3.4 (with a dec 12th > > timestamp) exists, though i can't see a 3.4 in the release > > area. > > Not released yet, Jordan sent a message earlier today, that it was > delayed 24 hours, so be patient ;-) and this was sent to where.. i didn't see anything on hubs :-( i guess this means no pre-release to mirrors again.. sigh thanks for the information though. -jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hubs" in the body of the message