From owner-cvs-etc Sun Apr 27 04:14:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA08185 for cvs-etc-outgoing; Sun, 27 Apr 1997 04:14:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA08150; Sun, 27 Apr 1997 04:13:51 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA15676; Sun, 27 Apr 1997 04:13:39 -0700 (PDT) Date: Sun, 27 Apr 1997 04:13:39 -0700 (PDT) Message-Id: <199704271113.EAA15676@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/27 04:13:39 Branch: etc RELENG_2_2 Modified: etc rc rc.network Log: tickadj is useful even if ntpdate isn't selected (clock drift isn't isolated to network time users) so make it a fully independant knob. Suggested-By: Richard Crook Revision Changes Path 1.104.2.9 +5 -1 src/etc/rc 1.1.2.2 +1 -5 src/etc/rc.network From owner-cvs-etc Sun Apr 27 05:42:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA10365 for cvs-etc-outgoing; Sun, 27 Apr 1997 05:42:34 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA10356; Sun, 27 Apr 1997 05:42:11 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id WAA07923; Sun, 27 Apr 1997 22:30:47 +1000 Date: Sun, 27 Apr 1997 22:30:47 +1000 From: Bruce Evans Message-Id: <199704271230.WAA07923@godzilla.zeta.org.au> To: cvs-all@FreeBSD.org, CVS-committers@FreeBSD.org, cvs-etc@FreeBSD.org, jkh@FreeBSD.org Subject: Re: cvs commit: src/etc rc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > Branch: etc RELENG_2_2 > Modified: etc rc rc.network > Log: > tickadj is useful even if ntpdate isn't selected (clock drift isn't > isolated to network time users) so make it a fully independant knob. > Suggested-By: Richard Crook tickadj is not useful: BUGS Fiddling with kernel variables at run time as a part of ordinary operations is a hideous practice which is only necessary to make up for deficiencies in the implementa- tion of adjtime(8) in many kernels and/or brokenness of ^ bug, should be 2 the system clock in some vendors' kernels. It would be much better if the kernels were fixed and the tickadj pro- gram went away. Since FreeBSD's adjtime(2) doesn't have these deficiencies, there is no need for tickadj. In FreeBSD-2.2, you can also fine tune the system clock using `sysctl -w machdep.i8254_freq=whatever'. This sets the nominal frequency to match the actual frequency (the actual frequency can be inferred from the drift). It has much the same effect as using tickadj to modify `tick' except it is free from certain undesirable side effects of modifying `tick'. Resolution is limited to +-0.5 usec per tick for the same reasons as it is limited for the tickadj method (this will be fixed someday), so you still need to use adjtime(8) or xntpd(8) for fine control. adjtime(8) isn't standard in FreeBSD. I recommend using xntpd with the kernel PLL even on systems not connected to networks. In-FreeBSD-2.2, you can also use the option CLK_USE_I8254_CALIBRATION to attempt to initialize the nominal i8254 frequency better, or you can boot with -v and note the frequency and set it later using sysctl. The frequency is calibrated relative to the RTC which may be more accurate. Bruce From owner-cvs-etc Sun Apr 27 06:48:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA12246 for cvs-etc-outgoing; Sun, 27 Apr 1997 06:48:07 -0700 (PDT) Received: from spinner.DIALix.COM (root@spinner.dialix.com [192.203.228.67]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA12223; Sun, 27 Apr 1997 06:47:49 -0700 (PDT) Received: from spinner.DIALix.COM (peter@localhost.DIALix.oz.au [127.0.0.1]) by spinner.DIALix.COM with ESMTP id VAA07550; Sun, 27 Apr 1997 21:47:35 +0800 (WST) Message-Id: <199704271347.VAA07550@spinner.DIALix.COM> X-Mailer: exmh version 2.0gamma 1/27/96 To: Bruce Evans cc: cvs-all@FreeBSD.org, CVS-committers@FreeBSD.org, cvs-etc@FreeBSD.org, jkh@FreeBSD.org Subject: Re: cvs commit: src/etc rc rc.network In-reply-to: Your message of "Sun, 27 Apr 1997 22:30:47 +1000." <199704271230.WAA07923@godzilla.zeta.org.au> Date: Sun, 27 Apr 1997 21:47:34 +0800 From: Peter Wemm Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Bruce Evans wrote: > > Branch: etc RELENG_2_2 > > Modified: etc rc rc.network > > Log: > > tickadj is useful even if ntpdate isn't selected (clock drift isn't > > isolated to network time users) so make it a fully independant knob. > > Suggested-By: Richard Crook > > tickadj is not useful: > > BUGS > Fiddling with kernel variables at run time as a part of > ordinary operations is a hideous practice which is only > necessary to make up for deficiencies in the implementa- > tion of adjtime(8) in many kernels and/or brokenness of > ^ bug, should be 2 > the system clock in some vendors' kernels. It would be > much better if the kernels were fixed and the tickadj pro- > gram went away. > > Since FreeBSD's adjtime(2) doesn't have these deficiencies, there is no > need for tickadj. > > In FreeBSD-2.2, you can also fine tune the system clock using `sysctl > -w machdep.i8254_freq=whatever'. This sets the nominal frequency to > match the actual frequency (the actual frequency can be inferred from > the drift). It has much the same effect as using tickadj to modify > `tick' except it is free from certain undesirable side effects of > modifying `tick'. Resolution is limited to +-0.5 usec per tick for > the same reasons as it is limited for the tickadj method (this will > be fixed someday), so you still need to use adjtime(8) or xntpd(8) > for fine control. adjtime(8) isn't standard in FreeBSD. I recommend > using xntpd with the kernel PLL even on systems not connected to networks. Well, I wish somebody would explain why I see this sort of thing on every single FreeBSD machine I work with, and how to stop it. Is the default tickadj -Aq causing this perhaps? Apr 27 10:39:07 pasteur xntpd[171]: time reset (step) -0.418709 s Apr 27 10:45:01 pasteur xntpd[171]: time reset (step) 0.561284 s Apr 27 12:33:07 pasteur xntpd[171]: Previous time adjustment didn't complete Apr 27 16:32:48 pasteur xntpd[171]: time reset (step) -0.223744 s Apr 27 16:38:15 pasteur xntpd[171]: time reset (step) 0.385576 s Apr 27 18:05:41 pasteur xntpd[171]: time reset (step) -0.614054 s Apr 27 18:11:39 pasteur xntpd[171]: time reset (step) 0.756201 s Apr 27 21:45:56 pasteur xntpd[171]: time reset (step) -0.304020 s Apr 27 22:10:28 pasteur xntpd[171]: time reset (step) 0.255533 s It seems to go through wild oscillations quite regularly. What worrys me is that xntpd seems to call adjtime() very frequently, about every second or so.. Does it have it's own PLL inside xntpd? Does having a PLL driving a PLL work? Other details: remote local st poll reach delay offset disp ======================================================================= *tictoc.dap.CSIR 203.12.3.8 1 256 377 0.05458 -0.061465 0.03783 % cat /etc/ntp.drift 24.454 0 (All machines have both of the CLK_USE_xxx_CALIBRATION options set) % sysctl machdep | grep freq machdep.i8254_freq: 1193174 machdep.i586_freq: 119751287 # tickadj tick = 10000 us, tickadj = 5 us calculated hz = 100.00 Hz recommended value of tickadj = 5 us > In-FreeBSD-2.2, you can also use the option CLK_USE_I8254_CALIBRATION > to attempt to initialize the nominal i8254 frequency better, or you > can boot with -v and note the frequency and set it later using sysctl. > The frequency is calibrated relative to the RTC which may be more > accurate. > > Bruce Cheers, -Peter From owner-cvs-etc Sun Apr 27 08:06:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA15115 for cvs-etc-outgoing; Sun, 27 Apr 1997 08:06:02 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA15110; Sun, 27 Apr 1997 08:05:52 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id BAA11961; Mon, 28 Apr 1997 01:02:19 +1000 Date: Mon, 28 Apr 1997 01:02:19 +1000 From: Bruce Evans Message-Id: <199704271502.BAA11961@godzilla.zeta.org.au> To: bde@zeta.org.au, peter@spinner.dialix.com Subject: Re: cvs commit: src/etc rc rc.network Cc: cvs-all@FreeBSD.org, CVS-committers@FreeBSD.org, cvs-etc@FreeBSD.org, jkh@FreeBSD.org Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk >Well, I wish somebody would explain why I see this sort of thing on every >single FreeBSD machine I work with, and how to stop it. Is the default >tickadj -Aq causing this perhaps? > >Apr 27 10:39:07 pasteur xntpd[171]: time reset (step) -0.418709 s >Apr 27 10:45:01 pasteur xntpd[171]: time reset (step) 0.561284 s >Apr 27 12:33:07 pasteur xntpd[171]: Previous time adjustment didn't complete >Apr 27 16:32:48 pasteur xntpd[171]: time reset (step) -0.223744 s >Apr 27 16:38:15 pasteur xntpd[171]: time reset (step) 0.385576 s >Apr 27 18:05:41 pasteur xntpd[171]: time reset (step) -0.614054 s Option SLEWALWAYS would prevent it from stepping. ># tickadj >tick = 10000 us, tickadj = 5 us >calculated hz = 100.00 Hz >recommended value of tickadj = 5 us The default tickadj isn't doing anything. I think it is always a no-op, at least when run at boot time. 5 us is the default. >It seems to go through wild oscillations quite regularly. What worrys me >is that xntpd seems to call adjtime() very frequently, about every second >or so.. Does it have it's own PLL inside xntpd? Does having a PLL driving >a PLL work? If it's doing lots of adjtime()'s then it's not using the kernel PLL. I enable the kernel PLL by setting flag 1 in the driftfile. I'm not sure if that's the only way to enable it (there doesn't seem to be a command line option). >Other details: > remote local st poll reach delay offset disp >======================================================================= >*tictoc.dap.CSIR 203.12.3.8 1 256 377 0.05458 -0.061465 0.03783 > >% cat /etc/ntp.drift >24.454 0 > >(All machines have both of the CLK_USE_xxx_CALIBRATION options set) >% sysctl machdep | grep freq >machdep.i8254_freq: 1193174 >machdep.i586_freq: 119751287 This all seems reasonable. Bruce From owner-cvs-etc Sun Apr 27 13:13:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA26648 for cvs-etc-outgoing; Sun, 27 Apr 1997 13:13:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA26625; Sun, 27 Apr 1997 13:12:50 -0700 (PDT) From: Alex Nash Received: (from alex@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA22017; Sun, 27 Apr 1997 13:12:35 -0700 (PDT) Date: Sun, 27 Apr 1997 13:12:35 -0700 (PDT) Message-Id: <199704272012.NAA22017@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.firewall Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk alex 97/04/27 13:12:35 Modified: etc rc.firewall Log: Typo police. Added links to O'Reilly & Associates and Addison-Wesley's web sites to accompany the book recommendations. Revision Changes Path 1.10 +5 -3 src/etc/rc.firewall From owner-cvs-etc Sun Apr 27 19:35:46 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA13973 for cvs-etc-outgoing; Sun, 27 Apr 1997 19:35:46 -0700 (PDT) Received: from mail.MCESTATE.COM (mail.MCESTATE.COM [207.211.200.50]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA13968; Sun, 27 Apr 1997 19:35:41 -0700 (PDT) Received: from localhost (vince@localhost) by mail.MCESTATE.COM (8.8.5/8.8.5) with SMTP id TAA06938; Sun, 27 Apr 1997 19:35:14 -0700 (PDT) Date: Sun, 27 Apr 1997 19:35:12 -0700 (PDT) From: Vincent Poy To: "Jordan K. Hubbard" cc: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: Re: cvs commit: src/etc rc.conf rc.network Makefile rc rc.firewall rc.pccard netstart sysconfig src/etc/etc.i386 rc.i386 In-Reply-To: <199704270359.UAA11671@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sat, 26 Apr 1997, Jordan K. Hubbard wrote: > jkh 97/04/26 20:59:19 > > Modified: etc Makefile rc rc.firewall rc.pccard > etc/etc.i386 rc.i386 > Added: etc rc.conf rc.network > Removed: etc netstart sysconfig > Log: > Bring in rc file changes from -current. From -current? I thought this was the -current branch =) Anyways, so does this mean that sysconfig is no longer used? I looked at rc.conf and it seems to be a total different animal than what sysconfig used to be. Cheers, Vince - vince@MCESTATE.COM - vince@GAIANET.NET ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] GaiaNet Corporation - M & C Estate / / / / | / | __] ] Beverly Hills, California USA 90210 / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] From owner-cvs-etc Sun Apr 27 21:17:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA20188 for cvs-etc-outgoing; Sun, 27 Apr 1997 21:17:26 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA20174; Sun, 27 Apr 1997 21:17:22 -0700 (PDT) Received: from time.cdrom.com (localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id VAA09176; Sun, 27 Apr 1997 21:17:29 -0700 (PDT) To: Vincent Poy cc: "Jordan K. Hubbard" , CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: Re: cvs commit: src/etc rc.conf rc.network Makefile rc rc.firewall rc.pccard netstart sysconfig src/etc/etc.i386 rc.i386 In-reply-to: Your message of "Sun, 27 Apr 1997 19:35:12 PDT." Date: Sun, 27 Apr 1997 21:17:28 -0700 Message-ID: <9174.862201048@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > On Sat, 26 Apr 1997, Jordan K. Hubbard wrote: > > > jkh 97/04/26 20:59:19 > > > > Modified: etc Makefile rc rc.firewall rc.pccard > > etc/etc.i386 rc.i386 > > Added: etc rc.conf rc.network > > Removed: etc netstart sysconfig > > Log: > > Bring in rc file changes from -current. > > From -current? I thought this was the -current branch =) I meant to say 2.2. ;-) > Anyways, so does this mean that sysconfig is no longer used? I looked at > rc.conf and it seems to be a total different animal than what sysconfig > used to be. Yes, rc.conf completely replaced sysconfig. Jordan From owner-cvs-etc Sun Apr 27 21:55:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA22069 for cvs-etc-outgoing; Sun, 27 Apr 1997 21:55:44 -0700 (PDT) Received: from mail.MCESTATE.COM (mail.MCESTATE.COM [207.211.200.50]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA22063; Sun, 27 Apr 1997 21:55:39 -0700 (PDT) Received: from localhost (vince@localhost) by mail.MCESTATE.COM (8.8.5/8.8.5) with SMTP id VAA07589; Sun, 27 Apr 1997 21:55:09 -0700 (PDT) Date: Sun, 27 Apr 1997 21:55:08 -0700 (PDT) From: Vincent Poy To: "Jordan K. Hubbard" cc: "Jordan K. Hubbard" , CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: Re: cvs commit: src/etc rc.conf rc.network Makefile rc rc.firewall rc.pccard netstart sysconfig src/etc/etc.i386 rc.i386 In-Reply-To: <9174.862201048@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Sun, 27 Apr 1997, Jordan K. Hubbard wrote: > > From -current? I thought this was the -current branch =) > > I meant to say 2.2. ;-) Oh I see =) > > Anyways, so does this mean that sysconfig is no longer used? I looked at > > rc.conf and it seems to be a total different animal than what sysconfig > > used to be. > > Yes, rc.conf completely replaced sysconfig. Hmmm, does rc.network replace a portion of sysconfig or is everything in rc.conf now? Also, I was wondering how do I do the following sysconfig entry in rc.conf: network_interfaces="vx0 lo0" ifconfig_vx0="" ifconfig_lo0="inet 127.0.0.1" This calls up start_if.vx0 in /etc. Cheers, Vince - vince@MCESTATE.COM - vince@GAIANET.NET ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] GaiaNet Corporation - M & C Estate / / / / | / | __] ] Beverly Hills, California USA 90210 / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] From owner-cvs-etc Sun Apr 27 22:10:13 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA22494 for cvs-etc-outgoing; Sun, 27 Apr 1997 22:10:13 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA22489; Sun, 27 Apr 1997 22:10:10 -0700 (PDT) Received: from time.cdrom.com (localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id WAA09400; Sun, 27 Apr 1997 22:10:17 -0700 (PDT) To: Vincent Poy cc: "Jordan K. Hubbard" , CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: Re: cvs commit: src/etc rc.conf rc.network Makefile rc rc.firewall rc.pccard netstart sysconfig src/etc/etc.i386 rc.i386 In-reply-to: Your message of "Sun, 27 Apr 1997 21:55:08 PDT." Date: Sun, 27 Apr 1997 22:10:17 -0700 Message-ID: <9398.862204217@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk > Hmmm, does rc.network replace a portion of sysconfig or is > everything in rc.conf now? Also, I was wondering how do I do the > following sysconfig entry in rc.conf: rc.network replaced netstart. That's all. > network_interfaces="vx0 lo0" > > ifconfig_vx0="" > ifconfig_lo0="inet 127.0.0.1" > > This calls up start_if.vx0 in /etc. Same way you do it now, just in rc.conf instead sysconfig. Jordan From owner-cvs-etc Sun Apr 27 22:50:51 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA24405 for cvs-etc-outgoing; Sun, 27 Apr 1997 22:50:51 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA24353; Sun, 27 Apr 1997 22:50:32 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01340; Sun, 27 Apr 1997 22:50:13 -0700 (PDT) Date: Sun, 27 Apr 1997 22:50:13 -0700 (PDT) Message-Id: <199704280550.WAA01340@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.pccard src/etc/etc.i386 rc.i386 Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/27 22:50:13 Branch: etc RELENG_2_2 etc/etc.i386 RELENG_2_2 Modified: etc rc.pccard etc/etc.i386 rc.i386 Log: Move apm configuration to rc.i386 where it belongs. Fix the rndcontrol stuff (it can't possibly have ever worked :-) Revision Changes Path 1.1.4.2 +0 -5 src/etc/rc.pccard 1.18.2.2 +10 -5 src/etc/etc.i386/rc.i386 From owner-cvs-etc Sun Apr 27 22:52:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA24590 for cvs-etc-outgoing; Sun, 27 Apr 1997 22:52:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA24567; Sun, 27 Apr 1997 22:52:16 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA01423; Sun, 27 Apr 1997 22:51:58 -0700 (PDT) Date: Sun, 27 Apr 1997 22:51:58 -0700 (PDT) Message-Id: <199704280551.WAA01423@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.pccard src/etc/etc.i386 rc.i386 Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/27 22:51:57 Modified: etc rc.pccard etc/etc.i386 rc.i386 Log: YAMF22 Revision Changes Path 1.4 +0 -5 src/etc/rc.pccard 1.23 +10 -5 src/etc/etc.i386/rc.i386 From owner-cvs-etc Mon Apr 28 00:35:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA28879 for cvs-etc-outgoing; Mon, 28 Apr 1997 00:35:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA28832; Mon, 28 Apr 1997 00:34:59 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA01727; Mon, 28 Apr 1997 00:34:40 -0700 (PDT) Date: Mon, 28 Apr 1997 00:34:40 -0700 (PDT) Message-Id: <199704280734.AAA01727@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/28 00:34:40 Branch: etc RELENG_2_2 Modified: etc rc.conf Log: lpd -> lpd_enable Pointed-On-By: nsayer@quack.kfu.com Revision Changes Path 1.1.2.2 +2 -2 src/etc/rc.conf From owner-cvs-etc Mon Apr 28 00:36:17 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id AAA28973 for cvs-etc-outgoing; Mon, 28 Apr 1997 00:36:17 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id AAA28896; Mon, 28 Apr 1997 00:35:57 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id AAA01764; Mon, 28 Apr 1997 00:35:38 -0700 (PDT) Date: Mon, 28 Apr 1997 00:35:38 -0700 (PDT) Message-Id: <199704280735.AAA01764@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/28 00:35:38 Modified: etc rc.conf Log: YAMF22 Revision Changes Path 1.3 +2 -2 src/etc/rc.conf From owner-cvs-etc Mon Apr 28 03:07:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA05256 for cvs-etc-outgoing; Mon, 28 Apr 1997 03:07:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA05231; Mon, 28 Apr 1997 03:07:20 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA06532; Mon, 28 Apr 1997 03:07:01 -0700 (PDT) Date: Mon, 28 Apr 1997 03:07:01 -0700 (PDT) Message-Id: <199704281007.DAA06532@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.conf src/etc/etc.i386 rc.i386 Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/28 03:07:00 Branch: etc RELENG_2_2 etc/etc.i386 RELENG_2_2 Modified: etc rc.conf etc/etc.i386 rc.i386 Log: Add support for keybell, correct linux entry. Revision Changes Path 1.1.2.3 +4 -3 src/etc/rc.conf 1.18.2.3 +7 -2 src/etc/etc.i386/rc.i386 From owner-cvs-etc Mon Apr 28 03:07:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA05290 for cvs-etc-outgoing; Mon, 28 Apr 1997 03:07:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA05265; Mon, 28 Apr 1997 03:07:46 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA06597; Mon, 28 Apr 1997 03:07:27 -0700 (PDT) Date: Mon, 28 Apr 1997 03:07:27 -0700 (PDT) Message-Id: <199704281007.DAA06597@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.conf src/etc/etc.i386 rc.i386 Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/28 03:07:21 Modified: etc rc.conf etc/etc.i386 rc.i386 Log: YAMF22 Revision Changes Path 1.4 +4 -3 src/etc/rc.conf 1.24 +7 -2 src/etc/etc.i386/rc.i386 From owner-cvs-etc Mon Apr 28 03:14:58 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA05579 for cvs-etc-outgoing; Mon, 28 Apr 1997 03:14:58 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA05557; Mon, 28 Apr 1997 03:14:48 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA06870; Mon, 28 Apr 1997 03:14:28 -0700 (PDT) Date: Mon, 28 Apr 1997 03:14:28 -0700 (PDT) Message-Id: <199704281014.DAA06870@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/28 03:14:28 Branch: etc RELENG_2_2 Modified: etc rc.conf Log: Put all arguments in quotes. Revision Changes Path 1.1.2.4 +63 -61 src/etc/rc.conf From owner-cvs-etc Mon Apr 28 03:15:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA05627 for cvs-etc-outgoing; Mon, 28 Apr 1997 03:15:24 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA05602; Mon, 28 Apr 1997 03:15:10 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA06911; Mon, 28 Apr 1997 03:14:45 -0700 (PDT) Date: Mon, 28 Apr 1997 03:14:45 -0700 (PDT) Message-Id: <199704281014.DAA06911@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/28 03:14:45 Modified: etc rc.conf Log: YAMF22 Revision Changes Path 1.5 +63 -61 src/etc/rc.conf From owner-cvs-etc Wed Apr 30 13:28:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA15958 for cvs-etc-outgoing; Wed, 30 Apr 1997 13:28:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA15884; Wed, 30 Apr 1997 13:27:40 -0700 (PDT) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA07174; Wed, 30 Apr 1997 13:27:34 -0700 (PDT) Date: Wed, 30 Apr 1997 13:27:34 -0700 (PDT) Message-Id: <199704302027.NAA07174@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc/mtree BSD.usr.dist Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk bde 97/04/30 13:27:34 Modified: etc/mtree BSD.usr.dist Log: Removed unused groff `generate' directories. Revision Changes Path 1.90 +1 -5 src/etc/mtree/BSD.usr.dist From owner-cvs-etc Wed Apr 30 21:37:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08386 for cvs-etc-outgoing; Wed, 30 Apr 1997 21:37:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA08354; Wed, 30 Apr 1997 21:37:19 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA22616; Wed, 30 Apr 1997 21:37:10 -0700 (PDT) Date: Wed, 30 Apr 1997 21:37:10 -0700 (PDT) Message-Id: <199705010437.VAA22616@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/30 21:37:10 Branch: etc RELENG_2_2 Modified: etc rc.network Log: Correct bogosity with tcp_extensions clause. Submitted-By: "Philippe Charnier" Revision Changes Path 1.1.2.3 +2 -2 src/etc/rc.network From owner-cvs-etc Wed Apr 30 21:38:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08476 for cvs-etc-outgoing; Wed, 30 Apr 1997 21:38:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA08452; Wed, 30 Apr 1997 21:38:25 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA22659; Wed, 30 Apr 1997 21:38:16 -0700 (PDT) Date: Wed, 30 Apr 1997 21:38:16 -0700 (PDT) Message-Id: <199705010438.VAA22659@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/30 21:38:16 Modified: etc rc.network Log: YAMF22 Revision Changes Path 1.3 +2 -2 src/etc/rc.network From owner-cvs-etc Wed Apr 30 21:41:26 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id VAA08609 for cvs-etc-outgoing; Wed, 30 Apr 1997 21:41:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id VAA08566; Wed, 30 Apr 1997 21:41:13 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id VAA22712; Wed, 30 Apr 1997 21:41:05 -0700 (PDT) Date: Wed, 30 Apr 1997 21:41:05 -0700 (PDT) Message-Id: <199705010441.VAA22712@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/30 21:41:05 Branch: etc RELENG_2_2 Modified: etc rc Log: Be a little more descriptive about what daemons we're starting. Submitted-By: "Philippe Charnier" Revision Changes Path 1.104.2.10 +2 -2 src/etc/rc From owner-cvs-etc Wed Apr 30 22:58:03 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA11842 for cvs-etc-outgoing; Wed, 30 Apr 1997 22:58:03 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA11816; Wed, 30 Apr 1997 22:57:39 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA23032; Wed, 30 Apr 1997 22:57:30 -0700 (PDT) Date: Wed, 30 Apr 1997 22:57:30 -0700 (PDT) Message-Id: <199705010557.WAA23032@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/30 22:57:30 Modified: etc rc Log: Clean up the output a bit. Revision Changes Path 1.118 +10 -6 src/etc/rc From owner-cvs-etc Wed Apr 30 23:01:57 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA12008 for cvs-etc-outgoing; Wed, 30 Apr 1997 23:01:57 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA11980; Wed, 30 Apr 1997 23:01:45 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA23090; Wed, 30 Apr 1997 23:01:36 -0700 (PDT) Date: Wed, 30 Apr 1997 23:01:36 -0700 (PDT) Message-Id: <199705010601.XAA23090@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/04/30 23:01:36 Branch: etc RELENG_2_2 Modified: etc rc Log: YAMF22 Revision Changes Path 1.104.2.11 +5 -3 src/etc/rc From owner-cvs-etc Thu May 1 13:04:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA12903 for cvs-etc-outgoing; Thu, 1 May 1997 13:04:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA12783; Thu, 1 May 1997 13:03:02 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA03745; Thu, 1 May 1997 13:02:59 -0700 (PDT) Date: Thu, 1 May 1997 13:02:59 -0700 (PDT) Message-Id: <199705012002.NAA03745@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 13:02:58 Branch: etc RELENG_2_2 Modified: etc rc.network Log: Source rc.firewall, don't execute it (so that variables get passed in properly). Closes PR#3456 Submitted-By: Christopher Masto Revision Changes Path 1.1.2.4 +2 -2 src/etc/rc.network From owner-cvs-etc Thu May 1 13:05:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA13082 for cvs-etc-outgoing; Thu, 1 May 1997 13:05:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA12931; Thu, 1 May 1997 13:04:48 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA03782; Thu, 1 May 1997 13:04:45 -0700 (PDT) Date: Thu, 1 May 1997 13:04:45 -0700 (PDT) Message-Id: <199705012004.NAA03782@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 13:04:45 Modified: etc rc.network Log: YAMF22 PR: 3456 Revision Changes Path 1.4 +2 -2 src/etc/rc.network From owner-cvs-etc Thu May 1 13:28:34 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA14433 for cvs-etc-outgoing; Thu, 1 May 1997 13:28:34 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA14410; Thu, 1 May 1997 13:28:22 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA03968; Thu, 1 May 1997 13:28:18 -0700 (PDT) Date: Thu, 1 May 1997 13:28:18 -0700 (PDT) Message-Id: <199705012028.NAA03968@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 13:28:18 Modified: etc rc.network Log: Ack, learn to spell "extentions" the same way in the same file. Also make the output a little less cryptic for sysctl settings. Suggested by: bde Revision Changes Path 1.5 +6 -6 src/etc/rc.network From owner-cvs-etc Thu May 1 13:29:02 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA14488 for cvs-etc-outgoing; Thu, 1 May 1997 13:29:02 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA14447; Thu, 1 May 1997 13:28:52 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA04002; Thu, 1 May 1997 13:28:49 -0700 (PDT) Date: Thu, 1 May 1997 13:28:49 -0700 (PDT) Message-Id: <199705012028.NAA04002@freefall.freebsd.org> To: CVS-committers@FreeBSD.org, cvs-all@FreeBSD.org, cvs-etc@FreeBSD.org Subject: cvs commit: src/etc rc.network Sender: owner-cvs-etc@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 13:28:49 Branch: etc RELENG_2_2 Modified: etc rc.network Log: YAMFC Revision Changes Path 1.1.2.5 +6 -6 src/etc/rc.network From owner-cvs-etc Thu May 1 14:03:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA16636 for cvs-etc-outgoing; Thu, 1 May 1997 14:03:08 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA16602; Thu, 1 May 1997 14:02:41 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA04248; Thu, 1 May 1997 14:02:37 -0700 (PDT) Date: Thu, 1 May 1997 14:02:37 -0700 (PDT) Message-Id: <199705012102.OAA04248@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/namedb PROTO.localhost.rev Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 97/05/01 14:02:37 Modified: etc/namedb PROTO.localhost.rev Log: Increase Retry interval from 300 to 900 to shut named warning that (300 < 900) maintainance interval Revision Changes Path 1.4 +2 -2 src/etc/namedb/PROTO.localhost.rev From owner-cvs-etc Thu May 1 14:26:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA18272 for cvs-etc-outgoing; Thu, 1 May 1997 14:26:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA18246; Thu, 1 May 1997 14:25:39 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA04381; Thu, 1 May 1997 14:25:35 -0700 (PDT) Date: Thu, 1 May 1997 14:25:35 -0700 (PDT) Message-Id: <199705012125.OAA04381@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc login.conf Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 97/05/01 14:25:35 Modified: etc login.conf Log: Add 'russian' users class Revision Changes Path 1.9 +9 -1 src/etc/login.conf From owner-cvs-etc Thu May 1 16:42:48 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id QAA25870 for cvs-etc-outgoing; Thu, 1 May 1997 16:42:48 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id QAA25816; Thu, 1 May 1997 16:42:25 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id QAA05854; Thu, 1 May 1997 16:42:20 -0700 (PDT) Date: Thu, 1 May 1997 16:42:20 -0700 (PDT) Message-Id: <199705012342.QAA05854@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf rc.network Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 16:42:20 Branch: etc RELENG_2_2 Modified: etc rc.conf rc.network Log: DOH! I "corrected" the spelling in exactly the opposite way I meant to. Urk. Fix. Reminded by: wollman Revision Changes Path 1.1.2.5 +2 -2 src/etc/rc.conf 1.1.2.6 +3 -3 src/etc/rc.network From owner-cvs-etc Thu May 1 17:04:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA27297 for cvs-etc-outgoing; Thu, 1 May 1997 17:04:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA27181; Thu, 1 May 1997 17:03:43 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA05969; Thu, 1 May 1997 17:03:38 -0700 (PDT) Date: Thu, 1 May 1997 17:03:38 -0700 (PDT) Message-Id: <199705020003.RAA05969@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc group Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 17:03:38 Branch: etc RELENG_2_2 Modified: etc group Log: Actually, a mail group probably isn't a bad idea in any case. Give it GID 6. Revision Changes Path 1.13.2.1 +1 -0 src/etc/group From owner-cvs-etc Thu May 1 17:06:37 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA27422 for cvs-etc-outgoing; Thu, 1 May 1997 17:06:37 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id RAA27380; Thu, 1 May 1997 17:06:15 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id RAA06129; Thu, 1 May 1997 17:06:10 -0700 (PDT) Date: Thu, 1 May 1997 17:06:10 -0700 (PDT) Message-Id: <199705020006.RAA06129@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc group Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/01 17:06:10 Modified: etc group Log: Add mail group. Revision Changes Path 1.14 +1 -0 src/etc/group From owner-cvs-etc Thu May 1 19:24:57 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA05303 for cvs-etc-outgoing; Thu, 1 May 1997 19:24:57 -0700 (PDT) Received: from nagual.pp.ru (ache.relcom.ru [194.58.229.133]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA05292; Thu, 1 May 1997 19:24:48 -0700 (PDT) Received: (from ache@localhost) by nagual.pp.ru (8.8.5/8.8.5) id GAA02868; Fri, 2 May 1997 06:24:42 +0400 (MSD) Date: Fri, 2 May 1997 06:24:37 +0400 (MSD) From: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= To: "Jordan K. Hubbard" cc: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc group In-Reply-To: <199705020006.RAA06129@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Thu, 1 May 1997, Jordan K. Hubbard wrote: > jkh 97/05/01 17:06:10 > > Modified: etc group > Log: > Add mail group. Does it means that ports/mail/* (like Elm or popper) should be sgid mail from this moment? -- Andrey A. Chernov http://www.nagual.pp.ru/~ache/ From owner-cvs-etc Thu May 1 19:39:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA06175 for cvs-etc-outgoing; Thu, 1 May 1997 19:39:11 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA06170; Thu, 1 May 1997 19:39:07 -0700 (PDT) Received: from time.cdrom.com (localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id TAA04689; Thu, 1 May 1997 19:38:17 -0700 (PDT) To: =?KOI8-R?B?4c7E0sXKIP7F0s7P1w==?= cc: "Jordan K. Hubbard" , CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc group In-reply-to: Your message of "Fri, 02 May 1997 06:24:37 +0400." Date: Thu, 01 May 1997 19:38:16 -0700 Message-ID: <4667.862540696@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > On Thu, 1 May 1997, Jordan K. Hubbard wrote: > > > jkh 97/05/01 17:06:10 > > > > Modified: etc group > > Log: > > Add mail group. > > Does it means that ports/mail/* (like Elm or popper) should be sgid mail > from this moment? Well, things like elm and pine have never been suid anything; I believe they do not need to create things in /var/mail and instead simply truncate the mailbox (which the user running elm/pine ostensibly owns). Anything which is suid root for the purpose of writing in /var/mail should be sgid mail, yes. I will change the default permissions of /var/mail in the mtree files after a few more days have gone by for feedback. Jordan From owner-cvs-etc Fri May 2 07:06:04 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id HAA01774 for cvs-etc-outgoing; Fri, 2 May 1997 07:06:04 -0700 (PDT) Received: from veda.is (ubiq.veda.is [193.4.230.60]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id HAA01761; Fri, 2 May 1997 07:05:54 -0700 (PDT) Received: (from adam@localhost) by veda.is (8.8.5/8.7.3) id OAA01454; Fri, 2 May 1997 14:24:58 GMT From: Adam David Message-Id: <199705021424.OAA01454@veda.is> Subject: Re: cvs commit: src/etc rc.network In-Reply-To: <199705012028.NAA03968@freefall.freebsd.org> from "Jordan K. Hubbard" at "May 1, 97 01:28:18 pm" To: jkh@freefall.FreeBSD.ORG (Jordan K. Hubbard) Date: Fri, 2 May 1997 14:24:55 +0000 (GMT) Cc: CVS-committers@freebsd.org, cvs-all@freebsd.org, cvs-etc@freebsd.org X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-cvs-etc@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > Modified: etc rc.network > Log: > Ack, learn to spell "extentions" the same way in the same file. Uh Jordan, that's "extensions". (but you probably meant that) Adam From owner-cvs-etc Fri May 2 10:04:41 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA10559 for cvs-etc-outgoing; Fri, 2 May 1997 10:04:41 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id KAA10552; Fri, 2 May 1997 10:04:36 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.8.4/8.8.4) with ESMTP id TAA04770; Fri, 2 May 1997 19:04:22 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.8.4/8.6.12) with UUCP id TAA02654; Fri, 2 May 1997 19:03:50 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.5/keltia-uucp-2.9) id IAA10623; Fri, 2 May 1997 08:56:32 +0200 (CEST) Message-ID: <19970502085632.27673@keltia.freenix.fr> Date: Fri, 2 May 1997 08:56:32 +0200 From: Ollivier Robert To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc group References: <4667.862540696@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.67 In-Reply-To: <4667.862540696@time.cdrom.com>; from Jordan K. Hubbard on Thu, May 01, 1997 at 07:38:16PM -0700 X-Operating-System: FreeBSD 3.0-CURRENT ctm#3245 Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Jordan K. Hubbard: > Anything which is suid root for the purpose of writing in /var/mail > should be sgid mail, yes. I will change the default permissions of > /var/mail in the mtree files after a few more days have gone by for > feedback. What do you want to change ? The permissions or the owner ? /var/mail should 755 root.wheel (or root.mail if you want) but we don't need Elm setgid mail. -- Ollivier ROBERT -=- FreeBSD: There are no limits -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #7: Sat Apr 26 17:13:26 CEST 1997 From owner-cvs-etc Fri May 2 20:56:08 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id UAA10005 for cvs-etc-outgoing; Fri, 2 May 1997 20:56:08 -0700 (PDT) Received: from time.cdrom.com (time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA09994; Fri, 2 May 1997 20:56:03 -0700 (PDT) Received: from time.cdrom.com (localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.5/8.6.9) with ESMTP id UAA15413; Fri, 2 May 1997 20:56:19 -0700 (PDT) To: Ollivier Robert cc: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: Re: cvs commit: src/etc group In-reply-to: Your message of "Fri, 02 May 1997 08:56:32 +0200." <19970502085632.27673@keltia.freenix.fr> Date: Fri, 02 May 1997 20:56:17 -0700 Message-ID: <15411.862631777@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > What do you want to change ? The permissions or the owner ? /var/mail The permissions and the group. 775 permission and root.mail or bin.mail (it's currently owned by bin, why change that?). Jordan From owner-cvs-etc Sat May 3 04:22:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA25349 for cvs-etc-outgoing; Sat, 3 May 1997 04:22:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA25310; Sat, 3 May 1997 04:21:01 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA21691; Sat, 3 May 1997 04:20:43 -0700 (PDT) Date: Sat, 3 May 1997 04:20:43 -0700 (PDT) Message-Id: <199705031120.EAA21691@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc.conf Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/03 04:20:43 Branch: etc RELENG_2_2 Modified: etc rc.conf Log: Turn tickadj off by default now that it's a separate knob. Reminded-By: Wolfgang Helbig Revision Changes Path 1.1.2.6 +2 -2 src/etc/rc.conf From owner-cvs-etc Sat May 3 04:24:07 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA25445 for cvs-etc-outgoing; Sat, 3 May 1997 04:24:07 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA25334; Sat, 3 May 1997 04:22:35 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA21783; Sat, 3 May 1997 04:22:18 -0700 (PDT) Date: Sat, 3 May 1997 04:22:18 -0700 (PDT) Message-Id: <199705031122.EAA21783@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc rc rc.conf rc.firewall rc.network rc.pccard src/etc/etc.i386 rc.i386 Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/03 04:22:18 Modified: etc rc rc.conf rc.firewall rc.network rc.pccard etc/etc.i386 rc.i386 Log: Update the etc world from RELENG_2_2 which is now more up-to-date (gotta get myself -current again, this is a drag). Also-fixes-problems-noted-by: Wolfgang Helbig & Joerg Wunsch Revision Changes Path 1.119 +6 -32 src/etc/rc 1.6 +3 -3 src/etc/rc.conf 1.11 +3 -5 src/etc/rc.firewall 1.6 +3 -7 src/etc/rc.network 1.5 +2 -2 src/etc/rc.pccard 1.25 +1 -6 src/etc/etc.i386/rc.i386 From owner-cvs-etc Sat May 3 12:59:25 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id MAA12335 for cvs-etc-outgoing; Sat, 3 May 1997 12:59:25 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id MAA12279; Sat, 3 May 1997 12:59:02 -0700 (PDT) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id MAA24222; Sat, 3 May 1997 12:58:42 -0700 (PDT) Date: Sat, 3 May 1997 12:58:42 -0700 (PDT) Message-Id: <199705031958.MAA24222@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc make.conf Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk andreas 97/05/03 12:58:42 Modified: etc make.conf Log: synchronize with bsd.doc.mk (long outstanding fix) PR: closes docs/3479 Revision Changes Path 1.48 +2 -2 src/etc/make.conf From owner-cvs-etc Sat May 3 13:15:59 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA13271 for cvs-etc-outgoing; Sat, 3 May 1997 13:15:59 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA13237; Sat, 3 May 1997 13:15:36 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA24401; Sat, 3 May 1997 13:15:15 -0700 (PDT) Date: Sat, 3 May 1997 13:15:15 -0700 (PDT) Message-Id: <199705032015.NAA24401@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.var.dist Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/03 13:15:15 Modified: etc/mtree BSD.var.dist Log: Change group ownership of /var/mail to mail and permission to 0775. This does *not* instantly make any program which "ensures" mail spool consistency by creating lock files safe in any way since other tools, like mail.local, will be using flock() semantics and any such lock file will simply be ignored. It does, however, allow a lot of things which are currently suid root in order to create such bogus lockfiles to, at least, be bogus at a much lower level of privilege (and this is good). Ultimately, of course, everybody should just use flock. Revision Changes Path 1.30 +2 -2 src/etc/mtree/BSD.var.dist From owner-cvs-etc Sat May 3 13:16:56 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id NAA13348 for cvs-etc-outgoing; Sat, 3 May 1997 13:16:56 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id NAA13321; Sat, 3 May 1997 13:16:46 -0700 (PDT) From: "Jordan K. Hubbard" Received: (from jkh@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA24444; Sat, 3 May 1997 13:16:25 -0700 (PDT) Date: Sat, 3 May 1997 13:16:25 -0700 (PDT) Message-Id: <199705032016.NAA24444@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc/mtree BSD.var.dist Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/05/03 13:16:25 Branch: etc/mtree RELENG_2_2 Modified: etc/mtree BSD.var.dist Log: Merge 1.30 from -current. Revision Changes Path 1.26.2.2 +2 -2 src/etc/mtree/BSD.var.dist From owner-cvs-etc Sat May 3 19:43:30 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA02691 for cvs-etc-outgoing; Sat, 3 May 1997 19:43:30 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA02658; Sat, 3 May 1997 19:41:52 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA27519; Sat, 3 May 1997 19:41:29 -0700 (PDT) Date: Sat, 3 May 1997 19:41:29 -0700 (PDT) Message-Id: <199705040241.TAA27519@freefall.freebsd.org> To: CVS-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-etc@FreeBSD.ORG Subject: cvs commit: src/etc newsyslog.conf Sender: owner-cvs-etc@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 97/05/03 19:41:29 Modified: etc newsyslog.conf Log: Use newly introduced pid file field now for ppp Revision Changes Path 1.10 +3 -3 src/etc/newsyslog.conf