From owner-freebsd-rc@FreeBSD.ORG Mon Sep 27 11:02:02 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8A0216A4D5 for ; Mon, 27 Sep 2004 11:02:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDDC643D39 for ; Mon, 27 Sep 2004 11:02:02 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i8RB22N8014691 for ; Mon, 27 Sep 2004 11:02:02 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i8RB21aX014684 for freebsd-rc@freebsd.org; Mon, 27 Sep 2004 11:02:01 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 27 Sep 2004 11:02:01 GMT Message-Id: <200409271102.i8RB21aX014684@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-rc@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2004 11:02:02 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [2004/03/09] kern/63954 rc devfs loses permissions 1 problem total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/08/29] conf/56144 rc [PATCH] /etc/rc.d/ipmon, /etc/rc.d/ipfilt o [2004/06/30] conf/68525 rc Loader's verbose boot mode has rc.d/local o [2004/07/07] conf/68745 rc /etc/rc.d/devfs runs after ntpd so links 3 problems total. From owner-freebsd-rc@FreeBSD.ORG Mon Sep 27 14:56:42 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A109C16A4CE; Mon, 27 Sep 2004 14:56:42 +0000 (GMT) Received: from telecom.net.et (sparrow.telecom.net.et [213.55.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id C994743D1F; Mon, 27 Sep 2004 14:56:27 +0000 (GMT) (envelope-from mtm@identd.net) Received: from [213.55.68.135] (HELO rogue.acs.lan) by telecom.net.et (CommuniGate Pro SMTP 3.4.8) with ESMTP id 58377581; Mon, 27 Sep 2004 17:49:02 +0300 Received: by rogue.acs.lan (Postfix, from userid 1000) id 12501B86E; Sun, 26 Sep 2004 19:04:19 +0300 (EAT) Date: Sun, 26 Sep 2004 19:04:18 +0300 From: Mike Makonnen To: freebsd-rc@freebsd.org Message-ID: <20040926160418.GB22015@rogue.acs.lan> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="y0ulUmNC+osPPQO6" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD/6.0-CURRENT (i386) Subject: Removing the FreeBSD keyword X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2004 14:56:42 -0000 --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi folks, I would like to remove the requirement that an rc.d script have a FreeBSD keyword. Since it's pretty clear that NetBSD and FreeBSD aren't going to share scripts the reason for the requirement no longer exists. If we can agree on this I would like to MFC it to RELENG_5. If it doesn't get MFCed it must be there for the entire 5.x life-cycle (which seems pretty stupid for something without any benefits). Getting rid of the requirement will also allow us to more easily implement what people have been asking for, for some time now: manipulating a group of related services. Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: AC7B 5672 2D11 F4D0 EBF8 5279 5359 2B82 7CD4 1F55 mtm@FreeBSD.Org| FreeBSD - Unleash the Daemon ! --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=diff Index: etc/rc =================================================================== RCS file: /home/ncvs/src/etc/rc,v retrieving revision 1.333 diff -u -r1.333 rc --- etc/rc 24 Jul 2004 16:30:31 -0000 1.333 +++ etc/rc 26 Sep 2004 05:58:59 -0000 @@ -68,7 +68,7 @@ os=`eval ${CMD_OSTYPE}` skip="-s nostart" [ `/sbin/sysctl -n security.jail.jailed` -eq 1 ] && skip="$skip -s nojail" -files=`rcorder -k ${os} ${skip} /etc/rc.d/* 2>/dev/null` +files=`rcorder ${skip} /etc/rc.d/* 2>/dev/null` for _rc_elem in ${files}; do run_rc_script ${_rc_elem} ${_boot} Index: etc/rc.shutdown =================================================================== RCS file: /home/ncvs/src/etc/rc.shutdown,v retrieving revision 1.27 diff -u -r1.27 rc.shutdown --- etc/rc.shutdown 26 Jun 2004 09:27:30 -0000 1.27 +++ etc/rc.shutdown 26 Sep 2004 06:00:06 -0000 @@ -79,10 +79,8 @@ # Determine the shutdown order of the /etc/rc.d scripts, # and perform the operation -# XXX - rcorder(8) with multiple -k switches works as a logical OR, -# so, we can't do this: rcorder -k shutdown -k FreeBSD. # -files=`eval grep -l \'^# KEYWORD:.*FreeBSD\' \`rcorder -k shutdown /etc/rc.d/* 2>/dev/null\`` +files=`rcorder -k shutdown /etc/rc.d/* 2>/dev/null` for _rc_elem in `reverse_list $files`; do debug "run_rc_script $_rc_elem faststop" Index: etc/rc.d/DAEMON =================================================================== RCS file: /home/ncvs/src/etc/rc.d/DAEMON,v retrieving revision 1.4 diff -u -r1.4 DAEMON --- etc/rc.d/DAEMON 17 Jan 2004 10:16:38 -0000 1.4 +++ etc/rc.d/DAEMON 26 Sep 2004 06:03:37 -0000 @@ -6,7 +6,6 @@ # PROVIDE: DAEMON # REQUIRE: NETWORKING SERVERS -# KEYWORD: FreeBSD # This is a dummy dependency, to ensure that general purpose daemons # are run _after_ the above are. Index: etc/rc.d/LOGIN =================================================================== RCS file: /home/ncvs/src/etc/rc.d/LOGIN,v retrieving revision 1.4 diff -u -r1.4 LOGIN --- etc/rc.d/LOGIN 17 Jan 2004 10:16:38 -0000 1.4 +++ etc/rc.d/LOGIN 26 Sep 2004 06:03:44 -0000 @@ -6,7 +6,6 @@ # PROVIDE: LOGIN # REQUIRE: DAEMON -# KEYWORD: FreeBSD # This is a dummy dependency to ensure user services such as xdm, # inetd, cron and kerberos are started after everything else, in case Index: etc/rc.d/NETWORKING =================================================================== RCS file: /home/ncvs/src/etc/rc.d/NETWORKING,v retrieving revision 1.8 diff -u -r1.8 NETWORKING --- etc/rc.d/NETWORKING 5 Mar 2004 07:43:37 -0000 1.8 +++ etc/rc.d/NETWORKING 26 Sep 2004 06:03:52 -0000 @@ -7,7 +7,6 @@ # PROVIDE: NETWORKING NETWORK # REQUIRE: dhclient netif routing network_ipv6 isdnd ppp-user # REQUIRE: routed mrouted route6d mroute6d -# KEYWORD: FreeBSD # This is a dummy dependency, for services which require networking # to be operational before starting. Index: etc/rc.d/SERVERS =================================================================== RCS file: /home/ncvs/src/etc/rc.d/SERVERS,v retrieving revision 1.4 diff -u -r1.4 SERVERS --- etc/rc.d/SERVERS 17 Jan 2004 10:16:38 -0000 1.4 +++ etc/rc.d/SERVERS 26 Sep 2004 06:03:58 -0000 @@ -6,7 +6,6 @@ # PROVIDE: SERVERS # REQUIRE: mountcritremote -# KEYWORD: FreeBSD # This is a dummy dependency, for early-start servers relying on # some basic configuration. Index: etc/rc.d/abi =================================================================== RCS file: /home/ncvs/src/etc/rc.d/abi,v retrieving revision 1.3 diff -u -r1.3 abi --- etc/rc.d/abi 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/abi 26 Sep 2004 06:04:09 -0000 @@ -6,7 +6,7 @@ # PROVIDE: abi # REQUIRE: LOGIN # BEFORE: securelevel -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/accounting =================================================================== RCS file: /home/ncvs/src/etc/rc.d/accounting,v retrieving revision 1.8 diff -u -r1.8 accounting --- etc/rc.d/accounting 8 Mar 2004 12:25:05 -0000 1.8 +++ etc/rc.d/accounting 26 Sep 2004 06:04:22 -0000 @@ -7,7 +7,7 @@ # PROVIDE: accounting # REQUIRE: mountcritremote # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/addswap =================================================================== RCS file: /home/ncvs/src/etc/rc.d/addswap,v retrieving revision 1.3 diff -u -r1.3 addswap --- etc/rc.d/addswap 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/addswap 26 Sep 2004 08:15:28 -0000 @@ -8,7 +8,7 @@ # PROVIDE: addswap # REQUIRE: mountcritlocal # BEFORE: sysctl -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/adjkerntz =================================================================== RCS file: /home/ncvs/src/etc/rc.d/adjkerntz,v retrieving revision 1.4 diff -u -r1.4 adjkerntz --- etc/rc.d/adjkerntz 12 Apr 2004 18:11:00 -0000 1.4 +++ etc/rc.d/adjkerntz 26 Sep 2004 08:15:28 -0000 @@ -6,7 +6,7 @@ # PROVIDE: adjkerntz # REQUIRE: mountcritlocal random # BEFORE: netif -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/amd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/amd,v retrieving revision 1.13 diff -u -r1.13 amd --- etc/rc.d/amd 8 Mar 2004 12:25:05 -0000 1.13 +++ etc/rc.d/amd 26 Sep 2004 08:15:28 -0000 @@ -7,7 +7,7 @@ # PROVIDE: amd # REQUIRE: rpcbind ypbind nfsclient # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/apm =================================================================== RCS file: /home/ncvs/src/etc/rc.d/apm,v retrieving revision 1.5 diff -u -r1.5 apm --- etc/rc.d/apm 8 Mar 2004 12:25:05 -0000 1.5 +++ etc/rc.d/apm 26 Sep 2004 08:15:28 -0000 @@ -6,7 +6,7 @@ # PROVIDE: apm # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/apmd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/apmd,v retrieving revision 1.11 diff -u -r1.11 apmd --- etc/rc.d/apmd 8 Mar 2004 12:25:05 -0000 1.11 +++ etc/rc.d/apmd 26 Sep 2004 08:15:28 -0000 @@ -7,7 +7,7 @@ # PROVIDE: apmd # REQUIRE: DAEMON apm # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/archdep =================================================================== RCS file: /home/ncvs/src/etc/rc.d/archdep,v retrieving revision 1.6 diff -u -r1.6 archdep --- etc/rc.d/archdep 8 Mar 2004 12:25:05 -0000 1.6 +++ etc/rc.d/archdep 26 Sep 2004 08:15:28 -0000 @@ -6,7 +6,7 @@ # PROVIDE: archdep # REQUIRE: LOGIN # BEFORE: abi -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/atm1 =================================================================== RCS file: /home/ncvs/src/etc/rc.d/atm1,v retrieving revision 1.14 diff -u -r1.14 atm1 --- etc/rc.d/atm1 8 Mar 2004 12:25:05 -0000 1.14 +++ etc/rc.d/atm1 26 Sep 2004 08:15:28 -0000 @@ -30,7 +30,7 @@ # PROVIDE: atm1 # REQUIRE: root # BEFORE: netif -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/atm2 =================================================================== RCS file: /home/ncvs/src/etc/rc.d/atm2,v retrieving revision 1.15 diff -u -r1.15 atm2 --- etc/rc.d/atm2 8 Mar 2004 12:25:05 -0000 1.15 +++ etc/rc.d/atm2 26 Sep 2004 08:15:28 -0000 @@ -30,7 +30,7 @@ # PROVIDE: atm2 # REQUIRE: atm1 netif # BEFORE: routing -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail # # Additional ATM interface configuration Index: etc/rc.d/atm3 =================================================================== RCS file: /home/ncvs/src/etc/rc.d/atm3,v retrieving revision 1.13 diff -u -r1.13 atm3 --- etc/rc.d/atm3 8 Mar 2004 12:25:05 -0000 1.13 +++ etc/rc.d/atm3 26 Sep 2004 08:15:28 -0000 @@ -32,7 +32,7 @@ # PROVIDE: atm3 # REQUIRE: atm2 # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/bgfsck =================================================================== RCS file: /home/ncvs/src/etc/rc.d/bgfsck,v retrieving revision 1.5 diff -u -r1.5 bgfsck --- etc/rc.d/bgfsck 8 Mar 2004 12:25:05 -0000 1.5 +++ etc/rc.d/bgfsck 26 Sep 2004 08:15:28 -0000 @@ -5,7 +5,7 @@ # PROVIDE: bgfsck # REQUIRE: cron devfs -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/bootparams =================================================================== RCS file: /home/ncvs/src/etc/rc.d/bootparams,v retrieving revision 1.6 diff -u -r1.6 bootparams --- etc/rc.d/bootparams 8 Mar 2004 12:25:05 -0000 1.6 +++ etc/rc.d/bootparams 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: bootparams # REQUIRE: rpcbind DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ccd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ccd,v retrieving revision 1.4 diff -u -r1.4 ccd --- etc/rc.d/ccd 8 Mar 2004 12:25:05 -0000 1.4 +++ etc/rc.d/ccd 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,7 @@ # # PROVIDE: disks -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/cleanvar =================================================================== RCS file: /home/ncvs/src/etc/rc.d/cleanvar,v retrieving revision 1.6 diff -u -r1.6 cleanvar --- etc/rc.d/cleanvar 23 Mar 2004 23:22:34 -0000 1.6 +++ etc/rc.d/cleanvar 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: cleanvar # REQUIRE: mountcritlocal var -# KEYWORD: FreeBSD purgedir() { Index: etc/rc.d/cleartmp =================================================================== RCS file: /home/ncvs/src/etc/rc.d/cleartmp,v retrieving revision 1.10 diff -u -r1.10 cleartmp --- etc/rc.d/cleartmp 23 Mar 2004 23:22:34 -0000 1.10 +++ etc/rc.d/cleartmp 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: cleartmp # REQUIRE: mountcritremote tmp # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/cron =================================================================== RCS file: /home/ncvs/src/etc/rc.d/cron,v retrieving revision 1.5 diff -u -r1.5 cron --- etc/rc.d/cron 17 Jan 2004 10:16:38 -0000 1.5 +++ etc/rc.d/cron 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: cron # REQUIRE: LOGIN # BEFORE: securelevel -# KEYWORD: FreeBSD shutdown +# KEYWORD: shutdown . /etc/rc.subr Index: etc/rc.d/devd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/devd,v retrieving revision 1.6 diff -u -r1.6 devd --- etc/rc.d/devd 8 Mar 2004 12:25:05 -0000 1.6 +++ etc/rc.d/devd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: devd # REQUIRE: NETWORKING # BEFORE: mountcritremote -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/devfs =================================================================== RCS file: /home/ncvs/src/etc/rc.d/devfs,v retrieving revision 1.8 diff -u -r1.8 devfs --- etc/rc.d/devfs 20 Mar 2004 07:10:16 -0000 1.8 +++ etc/rc.d/devfs 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: devfs # REQUIRE: LOGIN # BEFORE: securelevel -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/dhclient =================================================================== RCS file: /home/ncvs/src/etc/rc.d/dhclient,v retrieving revision 1.16 diff -u -r1.16 dhclient --- etc/rc.d/dhclient 20 May 2004 14:16:04 -0000 1.16 +++ etc/rc.d/dhclient 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: dhclient # REQUIRE: netif ipfw ipfilter mountcritlocal # BEFORE: NETWORKING -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail # # Note that there no syslog logging of dhclient messages at boot because # dhclient needs to start before services that syslog depends upon do. Index: etc/rc.d/dmesg =================================================================== RCS file: /home/ncvs/src/etc/rc.d/dmesg,v retrieving revision 1.3 diff -u -r1.3 dmesg --- etc/rc.d/dmesg 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/dmesg 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: dmesg # REQUIRE: mountcritremote # BEFORE: DAEMON -# KEYWORD: FreeBSD Daemon nojail +# KEYWORD: Daemon nojail . /etc/rc.subr Index: etc/rc.d/dumpon =================================================================== RCS file: /home/ncvs/src/etc/rc.d/dumpon,v retrieving revision 1.4 diff -u -r1.4 dumpon --- etc/rc.d/dumpon 20 Sep 2004 17:48:45 -0000 1.4 +++ etc/rc.d/dumpon 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: dumpon # REQUIRE: initrandom # BEFORE: disks savecore -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/early.sh =================================================================== RCS file: /home/ncvs/src/etc/rc.d/early.sh,v retrieving revision 1.1 diff -u -r1.1 early.sh --- etc/rc.d/early.sh 24 Apr 2003 08:27:29 -0000 1.1 +++ etc/rc.d/early.sh 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: early # REQUIRE: disks localswap # BEFORE: fsck -# KEYWORD: FreeBSD # # Support for legacy /etc/rc.early script Index: etc/rc.d/fsck =================================================================== RCS file: /home/ncvs/src/etc/rc.d/fsck,v retrieving revision 1.9 diff -u -r1.9 fsck --- etc/rc.d/fsck 11 Mar 2004 20:00:10 -0000 1.9 +++ etc/rc.d/fsck 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: fsck # REQUIRE: localswap -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/gbde =================================================================== RCS file: /home/ncvs/src/etc/rc.d/gbde,v retrieving revision 1.5 diff -u -r1.5 gbde --- etc/rc.d/gbde 18 Jul 2004 18:01:47 -0000 1.5 +++ etc/rc.d/gbde 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # # PROVIDE: disks -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/gbde_swap =================================================================== RCS file: /home/ncvs/src/etc/rc.d/gbde_swap,v retrieving revision 1.5 diff -u -r1.5 gbde_swap --- etc/rc.d/gbde_swap 18 Aug 2004 21:54:40 -0000 1.5 +++ etc/rc.d/gbde_swap 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,7 @@ # PROVIDE: disks # REQUIRE: initrandom -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/hostname =================================================================== RCS file: /home/ncvs/src/etc/rc.d/hostname,v retrieving revision 1.7 diff -u -r1.7 hostname --- etc/rc.d/hostname 2 Apr 2004 12:18:40 -0000 1.7 +++ etc/rc.d/hostname 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,6 @@ # PROVIDE: hostname # REQUIRE: mountcritlocal # BEFORE: netif -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ike =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ike,v retrieving revision 1.3 diff -u -r1.3 ike --- etc/rc.d/ike 16 Sep 2004 17:04:20 -0000 1.3 +++ etc/rc.d/ike 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: ike # REQUIRE: root mountcritlocal # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/inetd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/inetd,v retrieving revision 1.3 diff -u -r1.3 inetd --- etc/rc.d/inetd 17 Jan 2004 10:16:38 -0000 1.3 +++ etc/rc.d/inetd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: inetd # REQUIRE: DAEMON LOGIN -# KEYWORD: FreeBSD shutdown +# KEYWORD: shutdown . /etc/rc.subr Index: etc/rc.d/initdiskless =================================================================== RCS file: /home/ncvs/src/etc/rc.d/initdiskless,v retrieving revision 1.38 diff -u -r1.38 initdiskless --- etc/rc.d/initdiskless 6 Jun 2004 11:46:29 -0000 1.38 +++ etc/rc.d/initdiskless 26 Sep 2004 08:15:29 -0000 @@ -28,7 +28,7 @@ # # REQUIRE: preseedrandom # PROVIDE: initdiskless -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail # BEFORE: ipfw Index: etc/rc.d/initrandom =================================================================== RCS file: /home/ncvs/src/etc/rc.d/initrandom,v retrieving revision 1.3 diff -u -r1.3 initrandom --- etc/rc.d/initrandom 9 Apr 2004 15:56:16 -0000 1.3 +++ etc/rc.d/initrandom 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: initrandom # REQUIRE: initdiskless # BEFORE: disks -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ip6addrctl =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ip6addrctl,v retrieving revision 1.3 diff -u -r1.3 ip6addrctl --- etc/rc.d/ip6addrctl 2 Jun 2004 09:39:49 -0000 1.3 +++ etc/rc.d/ip6addrctl 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: ip6addrctl # REQUIRE: mountcritlocal netif # BEFORE: network_ipv6 -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ip6fw =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ip6fw,v retrieving revision 1.5 diff -u -r1.5 ip6fw --- etc/rc.d/ip6fw 8 Mar 2004 12:25:05 -0000 1.5 +++ etc/rc.d/ip6fw 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: ip6fw # REQUIRE: routing # BEFORE: network_ipv6 -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ipfilter =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipfilter,v retrieving revision 1.21 diff -u -r1.21 ipfilter --- etc/rc.d/ipfilter 23 Apr 2004 15:43:13 -0000 1.21 +++ etc/rc.d/ipfilter 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: ipfilter # REQUIRE: root mountcritlocal # BEFORE: netif -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ipfs =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipfs,v retrieving revision 1.5 diff -u -r1.5 ipfs --- etc/rc.d/ipfs 8 Mar 2004 12:25:05 -0000 1.5 +++ etc/rc.d/ipfs 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: ipfs # REQUIRE: ipnat # BEFORE: netif -# KEYWORD: FreeBSD nojail shutdown +# KEYWORD: nojail shutdown . /etc/rc.subr Index: etc/rc.d/ipfw =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipfw,v retrieving revision 1.8 diff -u -r1.8 ipfw --- etc/rc.d/ipfw 28 Apr 2004 13:20:15 -0000 1.8 +++ etc/rc.d/ipfw 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: ipfw # REQUIRE: ppp-user # BEFORE: NETWORKING -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr . /etc/network.subr Index: etc/rc.d/ipmon =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipmon,v retrieving revision 1.12 diff -u -r1.12 ipmon --- etc/rc.d/ipmon 9 Sep 2004 16:41:55 -0000 1.12 +++ etc/rc.d/ipmon 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: ipmon # REQUIRE: mountcritlocal hostname sysctl cleanvar ipfilter # BEFORE: SERVERS -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ipnat =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipnat,v retrieving revision 1.13 diff -u -r1.13 ipnat --- etc/rc.d/ipnat 8 Mar 2004 12:25:05 -0000 1.13 +++ etc/rc.d/ipnat 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: ipnat # REQUIRE: ipfilter # BEFORE: DAEMON netif -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ipsec =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipsec,v retrieving revision 1.10 diff -u -r1.10 ipsec --- etc/rc.d/ipsec 8 Mar 2004 12:25:05 -0000 1.10 +++ etc/rc.d/ipsec 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: ipsec # REQUIRE: root mountcritlocal # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail # it does not really require beforenetlkm. Index: etc/rc.d/ipxrouted =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ipxrouted,v retrieving revision 1.2 diff -u -r1.2 ipxrouted --- etc/rc.d/ipxrouted 8 Mar 2004 12:25:05 -0000 1.2 +++ etc/rc.d/ipxrouted 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: ipxrouted # REQUIRE: SERVERS # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/isdnd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/isdnd,v retrieving revision 1.18 diff -u -r1.18 isdnd --- etc/rc.d/isdnd 8 Mar 2004 12:25:05 -0000 1.18 +++ etc/rc.d/isdnd 26 Sep 2004 08:15:29 -0000 @@ -8,7 +8,7 @@ # PROVIDE: isdnd # REQUIRE: netif mountcritlocal -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/jail =================================================================== RCS file: /home/ncvs/src/etc/rc.d/jail,v retrieving revision 1.16 diff -u -r1.16 jail --- etc/rc.d/jail 19 Aug 2004 08:55:24 -0000 1.16 +++ etc/rc.d/jail 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: jail # REQUIRE: LOGIN # BEFORE: securelevel -# KEYWORD: FreeBSD nojail shutdown +# KEYWORD: nojail shutdown . /etc/rc.subr Index: etc/rc.d/kadmind =================================================================== RCS file: /home/ncvs/src/etc/rc.d/kadmind,v retrieving revision 1.3 diff -u -r1.3 kadmind --- etc/rc.d/kadmind 8 Mar 2003 09:50:10 -0000 1.3 +++ etc/rc.d/kadmind 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: kadmin # REQUIRE: kerberos # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/kerberos =================================================================== RCS file: /home/ncvs/src/etc/rc.d/kerberos,v retrieving revision 1.3 diff -u -r1.3 kerberos --- etc/rc.d/kerberos 8 Mar 2003 09:50:10 -0000 1.3 +++ etc/rc.d/kerberos 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: kerberos # REQUIRE: NETWORKING -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/keyserv =================================================================== RCS file: /home/ncvs/src/etc/rc.d/keyserv,v retrieving revision 1.2 diff -u -r1.2 keyserv --- etc/rc.d/keyserv 14 Aug 2002 05:44:32 -0000 1.2 +++ etc/rc.d/keyserv 26 Sep 2004 08:15:29 -0000 @@ -9,7 +9,6 @@ # PROVIDE: keyserv # REQUIRE: ypbind # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/kldxref =================================================================== RCS file: /home/ncvs/src/etc/rc.d/kldxref,v retrieving revision 1.3 diff -u -r1.3 kldxref --- etc/rc.d/kldxref 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/kldxref 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: kldxref # REQUIRE: root mountcritlocal # BEFORE: netif -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/kpasswdd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/kpasswdd,v retrieving revision 1.2 diff -u -r1.2 kpasswdd --- etc/rc.d/kpasswdd 6 May 2003 02:28:03 -0000 1.2 +++ etc/rc.d/kpasswdd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: kpasswdd # REQUIRE: kadmin # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ldconfig =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ldconfig,v retrieving revision 1.11 diff -u -r1.11 ldconfig --- etc/rc.d/ldconfig 5 Mar 2004 07:43:38 -0000 1.11 +++ etc/rc.d/ldconfig 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: ldconfig # REQUIRE: mountcritremote # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/local =================================================================== RCS file: /home/ncvs/src/etc/rc.d/local,v retrieving revision 1.5 diff -u -r1.5 local --- etc/rc.d/local 17 Jan 2004 10:16:38 -0000 1.5 +++ etc/rc.d/local 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: local # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD shutdown +# KEYWORD: shutdown . /etc/rc.subr Index: etc/rc.d/localpkg =================================================================== RCS file: /home/ncvs/src/etc/rc.d/localpkg,v retrieving revision 1.4 diff -u -r1.4 localpkg --- etc/rc.d/localpkg 28 Jul 2004 00:09:18 -0000 1.4 +++ etc/rc.d/localpkg 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: localpkg # REQUIRE: abi # BEFORE: securelevel -# KEYWORD: FreeBSD shutdown +# KEYWORD: shutdown . /etc/rc.subr Index: etc/rc.d/lomac =================================================================== RCS file: /home/ncvs/src/etc/rc.d/lomac,v retrieving revision 1.3 diff -u -r1.3 lomac --- etc/rc.d/lomac 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/lomac 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: lomac # REQUIRE: mountcritremote # BEFORE: syslogd -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/lpd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/lpd,v retrieving revision 1.5 diff -u -r1.5 lpd --- etc/rc.d/lpd 17 Jan 2004 10:40:45 -0000 1.5 +++ etc/rc.d/lpd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: lpd # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/mixer =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mixer,v retrieving revision 1.3 diff -u -r1.3 mixer --- etc/rc.d/mixer 27 Mar 2004 09:26:22 -0000 1.3 +++ etc/rc.d/mixer 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: mixer # REQUIRE: LOGIN usbd -# KEYWORD: FreeBSD nojail shutdown +# KEYWORD: nojail shutdown . /etc/rc.subr Index: etc/rc.d/motd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/motd,v retrieving revision 1.8 diff -u -r1.8 motd --- etc/rc.d/motd 17 Jan 2004 10:16:38 -0000 1.8 +++ etc/rc.d/motd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: motd # REQUIRE: mountcritremote # BEFORE: LOGIN -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/mountcritlocal =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mountcritlocal,v retrieving revision 1.11 diff -u -r1.11 mountcritlocal --- etc/rc.d/mountcritlocal 8 Mar 2004 12:25:05 -0000 1.11 +++ etc/rc.d/mountcritlocal 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: mountcritlocal # REQUIRE: root -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/mountcritremote =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mountcritremote,v retrieving revision 1.9 diff -u -r1.9 mountcritremote --- etc/rc.d/mountcritremote 8 Mar 2004 12:25:05 -0000 1.9 +++ etc/rc.d/mountcritremote 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: mountcritremote # REQUIRE: NETWORKING root mountcritlocal -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/mountd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mountd,v retrieving revision 1.14 diff -u -r1.14 mountd --- etc/rc.d/mountd 8 Mar 2004 12:25:05 -0000 1.14 +++ etc/rc.d/mountd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: mountd # REQUIRE: NETWORKING nfsserver rpcbind quota -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/moused =================================================================== RCS file: /home/ncvs/src/etc/rc.d/moused,v retrieving revision 1.6 diff -u -r1.6 moused --- etc/rc.d/moused 8 Mar 2004 12:25:05 -0000 1.6 +++ etc/rc.d/moused 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: moused # REQUIRE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/mroute6d =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mroute6d,v retrieving revision 1.3 diff -u -r1.3 mroute6d --- etc/rc.d/mroute6d 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/mroute6d 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,7 @@ # PROVIDE: mroute6d # REQUIRE: network_ipv6 -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/mrouted =================================================================== RCS file: /home/ncvs/src/etc/rc.d/mrouted,v retrieving revision 1.7 diff -u -r1.7 mrouted --- etc/rc.d/mrouted 8 Mar 2004 12:25:05 -0000 1.7 +++ etc/rc.d/mrouted 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: mrouted # REQUIRE: netif routing -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/msgs =================================================================== RCS file: /home/ncvs/src/etc/rc.d/msgs,v retrieving revision 1.1 diff -u -r1.1 msgs --- etc/rc.d/msgs 13 Jun 2002 22:14:36 -0000 1.1 +++ etc/rc.d/msgs 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: msgs # REQUIRE: LOGIN -# KEYWORD: FreeBSD # Make a bounds file for msgs(1) if there isn't one already # Index: etc/rc.d/named =================================================================== RCS file: /home/ncvs/src/etc/rc.d/named,v retrieving revision 1.12 diff -u -r1.12 named --- etc/rc.d/named 24 Sep 2004 23:49:38 -0000 1.12 +++ etc/rc.d/named 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: named # REQUIRE: SERVERS # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/natd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/natd,v retrieving revision 1.1 diff -u -r1.1 natd --- etc/rc.d/natd 5 Apr 2004 16:29:45 -0000 1.1 +++ etc/rc.d/natd 26 Sep 2004 08:15:29 -0000 @@ -4,7 +4,7 @@ # # PROVIDE: natd -# KEYWORD: FreeBSD nostart nojail +# KEYWORD: nostart nojail . /etc/rc.subr . /etc/network.subr Index: etc/rc.d/netif =================================================================== RCS file: /home/ncvs/src/etc/rc.d/netif,v retrieving revision 1.10 diff -u -r1.10 netif --- etc/rc.d/netif 30 Jul 2004 17:19:35 -0000 1.10 +++ etc/rc.d/netif 26 Sep 2004 08:15:29 -0000 @@ -27,7 +27,7 @@ # PROVIDE: netif # REQUIRE: atm1 ipfilter mountcritlocal pccard serial sppp sysctl -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr . /etc/network.subr Index: etc/rc.d/netoptions =================================================================== RCS file: /home/ncvs/src/etc/rc.d/netoptions,v retrieving revision 1.140 diff -u -r1.140 netoptions --- etc/rc.d/netoptions 8 Mar 2004 12:25:05 -0000 1.140 +++ etc/rc.d/netoptions 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: netoptions # REQUIRE: localpkg # BEFORE: securelevel -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/network_ipv6 =================================================================== RCS file: /home/ncvs/src/etc/rc.d/network_ipv6,v retrieving revision 1.36 diff -u -r1.36 network_ipv6 --- etc/rc.d/network_ipv6 8 Mar 2004 12:25:05 -0000 1.36 +++ etc/rc.d/network_ipv6 26 Sep 2004 08:15:29 -0000 @@ -30,7 +30,7 @@ # PROVIDE: network_ipv6 # REQUIRE: routing -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr . /etc/network.subr Index: etc/rc.d/nfsclient =================================================================== RCS file: /home/ncvs/src/etc/rc.d/nfsclient,v retrieving revision 1.4 diff -u -r1.4 nfsclient --- etc/rc.d/nfsclient 8 Mar 2004 12:25:05 -0000 1.4 +++ etc/rc.d/nfsclient 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,7 @@ # PROVIDE: nfsclient # REQUIRE: NETWORKING mountcritremote rpcbind -# KEYWORD: FreeBSD nojail shutdown +# KEYWORD: nojail shutdown . /etc/rc.subr Index: etc/rc.d/nfsd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/nfsd,v retrieving revision 1.12 diff -u -r1.12 nfsd --- etc/rc.d/nfsd 8 Mar 2004 12:25:05 -0000 1.12 +++ etc/rc.d/nfsd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: nfsd # REQUIRE: mountd -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/nfslocking =================================================================== RCS file: /home/ncvs/src/etc/rc.d/nfslocking,v retrieving revision 1.10 diff -u -r1.10 nfslocking --- etc/rc.d/nfslocking 8 Mar 2004 12:25:05 -0000 1.10 +++ etc/rc.d/nfslocking 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: nfslocking # REQUIRE: nfsserver nfsclient nfsd # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/nfsserver =================================================================== RCS file: /home/ncvs/src/etc/rc.d/nfsserver,v retrieving revision 1.3 diff -u -r1.3 nfsserver --- etc/rc.d/nfsserver 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/nfsserver 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,7 @@ # PROVIDE: nfsserver # REQUIRE: NETWORKING mountcritremote -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/nisdomain =================================================================== RCS file: /home/ncvs/src/etc/rc.d/nisdomain,v retrieving revision 1.2 diff -u -r1.2 nisdomain --- etc/rc.d/nisdomain 24 May 2004 11:48:58 -0000 1.2 +++ etc/rc.d/nisdomain 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,6 @@ # PROVIDE: nisdomain # REQUIRE: SERVERS rpcbind # BEFORE: ypbind ypserv ypxfrd -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/nsswitch =================================================================== RCS file: /home/ncvs/src/etc/rc.d/nsswitch,v retrieving revision 1.4 diff -u -r1.4 nsswitch --- etc/rc.d/nsswitch 16 Sep 2004 17:03:12 -0000 1.4 +++ etc/rc.d/nsswitch 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,6 @@ # PROVIDE: nsswitch # REQUIRE: root # BEFORE: NETWORK -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ntpd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ntpd,v retrieving revision 1.9 diff -u -r1.9 ntpd --- etc/rc.d/ntpd 14 Sep 2004 03:01:38 -0000 1.9 +++ etc/rc.d/ntpd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: ntpd # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ntpdate =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ntpdate,v retrieving revision 1.11 diff -u -r1.11 ntpdate --- etc/rc.d/ntpdate 15 Sep 2004 01:08:33 -0000 1.11 +++ etc/rc.d/ntpdate 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # BEFORE: ntpd # PROVIDE: ntpdate # REQUIRE: NETWORKING syslogd -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/othermta =================================================================== RCS file: /home/ncvs/src/etc/rc.d/othermta,v retrieving revision 1.2 diff -u -r1.2 othermta --- etc/rc.d/othermta 9 Aug 2002 17:45:04 -0000 1.2 +++ etc/rc.d/othermta 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: mail # REQUIRE: LOGIN -# KEYWORD: FreeBSD # XXX - TEMPORARY SCRIPT UNTIL YOU WRITE YOUR OWN REPLACEMENT. # Index: etc/rc.d/pccard =================================================================== RCS file: /home/ncvs/src/etc/rc.d/pccard,v retrieving revision 1.29 diff -u -r1.29 pccard --- etc/rc.d/pccard 8 Mar 2004 12:25:05 -0000 1.29 +++ etc/rc.d/pccard 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: pccard # REQUIRE: mountcritlocal -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/pcvt =================================================================== RCS file: /home/ncvs/src/etc/rc.d/pcvt,v retrieving revision 1.4 diff -u -r1.4 pcvt --- etc/rc.d/pcvt 8 Mar 2004 12:25:05 -0000 1.4 +++ etc/rc.d/pcvt 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: pcvt # REQUIRE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/pf =================================================================== RCS file: /home/ncvs/src/etc/rc.d/pf,v retrieving revision 1.4 diff -u -r1.4 pf --- etc/rc.d/pf 16 Sep 2004 17:04:20 -0000 1.4 +++ etc/rc.d/pf 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: pf # REQUIRE: root mountcritlocal netif pflog # BEFORE: DAEMON LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/pflog =================================================================== RCS file: /home/ncvs/src/etc/rc.d/pflog,v retrieving revision 1.3 diff -u -r1.3 pflog --- etc/rc.d/pflog 16 Sep 2004 17:04:20 -0000 1.3 +++ etc/rc.d/pflog 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: pflog # REQUIRE: root mountcritlocal netif # BEFORE: DAEMON LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/power_profile =================================================================== RCS file: /home/ncvs/src/etc/rc.d/power_profile,v retrieving revision 1.3 diff -u -r1.3 power_profile --- etc/rc.d/power_profile 7 May 2004 05:22:38 -0000 1.3 +++ etc/rc.d/power_profile 26 Sep 2004 08:15:29 -0000 @@ -9,7 +9,7 @@ # # PROVIDE: power_profile -# KEYWORD: FreeBSD nojail nostart +# KEYWORD: nojail nostart . /etc/rc.subr Index: etc/rc.d/ppp-user =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ppp-user,v retrieving revision 1.5 diff -u -r1.5 ppp-user --- etc/rc.d/ppp-user 8 Mar 2004 12:25:05 -0000 1.5 +++ etc/rc.d/ppp-user 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,7 @@ # PROVIDE: ppp-user # REQUIRE: netif isdnd -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/pppoed =================================================================== RCS file: /home/ncvs/src/etc/rc.d/pppoed,v retrieving revision 1.2 diff -u -r1.2 pppoed --- etc/rc.d/pppoed 8 Mar 2004 12:25:05 -0000 1.2 +++ etc/rc.d/pppoed 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: pppoed # REQUIRE: NETWORKING # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/preseedrandom =================================================================== RCS file: /home/ncvs/src/etc/rc.d/preseedrandom,v retrieving revision 1.4 diff -u -r1.4 preseedrandom --- etc/rc.d/preseedrandom 8 Jun 2004 19:53:25 -0000 1.4 +++ etc/rc.d/preseedrandom 26 Sep 2004 08:15:29 -0000 @@ -4,7 +4,7 @@ # # PROVIDE: preseedrandom -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail feed_dev_random() { Index: etc/rc.d/pwcheck =================================================================== RCS file: /home/ncvs/src/etc/rc.d/pwcheck,v retrieving revision 1.3 diff -u -r1.3 pwcheck --- etc/rc.d/pwcheck 17 Jan 2004 10:16:38 -0000 1.3 +++ etc/rc.d/pwcheck 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: pwcheck # REQUIRE: mountcritremote syslogd # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/quota =================================================================== RCS file: /home/ncvs/src/etc/rc.d/quota,v retrieving revision 1.4 diff -u -r1.4 quota --- etc/rc.d/quota 8 Mar 2004 12:25:05 -0000 1.4 +++ etc/rc.d/quota 26 Sep 2004 08:15:29 -0000 @@ -9,7 +9,7 @@ # PROVIDE: quota # REQUIRE: mountcritremote # BEFORE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ramdisk =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ramdisk,v retrieving revision 1.3 diff -u -r1.3 ramdisk --- etc/rc.d/ramdisk 6 Apr 2004 23:15:48 -0000 1.3 +++ etc/rc.d/ramdisk 26 Sep 2004 08:15:29 -0000 @@ -30,7 +30,6 @@ # PROVIDE: ramdisk # REQUIRE: localswap # BEFORE: mountcritlocal -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ramdisk-own =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ramdisk-own,v retrieving revision 1.2 diff -u -r1.2 ramdisk-own --- etc/rc.d/ramdisk-own 6 Apr 2004 23:15:48 -0000 1.2 +++ etc/rc.d/ramdisk-own 26 Sep 2004 08:15:29 -0000 @@ -30,7 +30,6 @@ # PROVIDE: ramdisk-own # REQUIRE: ramdisk mountcritlocal # BEFORE: SERVERS -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/random =================================================================== RCS file: /home/ncvs/src/etc/rc.d/random,v retrieving revision 1.6 diff -u -r1.6 random --- etc/rc.d/random 12 Apr 2004 18:11:00 -0000 1.6 +++ etc/rc.d/random 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: random # REQUIRE: var initrandom # BEFORE: netif -# KEYWORD: FreeBSD nojail shutdown +# KEYWORD: nojail shutdown . /etc/rc.subr Index: etc/rc.d/rarpd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/rarpd,v retrieving revision 1.4 diff -u -r1.4 rarpd --- etc/rc.d/rarpd 8 Mar 2004 12:25:05 -0000 1.4 +++ etc/rc.d/rarpd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: rarpd # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/rcconf.sh =================================================================== RCS file: /home/ncvs/src/etc/rc.d/rcconf.sh,v retrieving revision 1.2 diff -u -r1.2 rcconf.sh --- etc/rc.d/rcconf.sh 25 Jan 2003 20:02:35 -0000 1.2 +++ etc/rc.d/rcconf.sh 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: rcconf # REQUIRE: initdiskless # BEFORE: disks initrandom -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/resolv =================================================================== RCS file: /home/ncvs/src/etc/rc.d/resolv,v retrieving revision 1.33 diff -u -r1.33 resolv --- etc/rc.d/resolv 28 Apr 2004 09:09:27 -0000 1.33 +++ etc/rc.d/resolv 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: resolv # REQUIRE: initdiskless rcconf -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/root =================================================================== RCS file: /home/ncvs/src/etc/rc.d/root,v retrieving revision 1.9 diff -u -r1.9 root --- etc/rc.d/root 8 Mar 2004 12:25:05 -0000 1.9 +++ etc/rc.d/root 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: root # REQUIRE: fsck -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/route6d =================================================================== RCS file: /home/ncvs/src/etc/rc.d/route6d,v retrieving revision 1.8 diff -u -r1.8 route6d --- etc/rc.d/route6d 8 Mar 2004 12:25:05 -0000 1.8 +++ etc/rc.d/route6d 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: route6d # REQUIRE: network_ipv6 -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/routed =================================================================== RCS file: /home/ncvs/src/etc/rc.d/routed,v retrieving revision 1.11 diff -u -r1.11 routed --- etc/rc.d/routed 29 Aug 2004 15:02:43 -0000 1.11 +++ etc/rc.d/routed 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: routed # REQUIRE: netif routing -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/routing =================================================================== RCS file: /home/ncvs/src/etc/rc.d/routing,v retrieving revision 1.140 diff -u -r1.140 routing --- etc/rc.d/routing 8 Mar 2004 12:25:05 -0000 1.140 +++ etc/rc.d/routing 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: routing # REQUIRE: netif ppp-user -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/rpcbind =================================================================== RCS file: /home/ncvs/src/etc/rc.d/rpcbind,v retrieving revision 1.11 diff -u -r1.11 rpcbind --- etc/rc.d/rpcbind 15 Sep 2004 01:08:33 -0000 1.11 +++ etc/rc.d/rpcbind 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: rpcbind # REQUIRE: NETWORKING ntpdate syslogd named -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/rtadvd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/rtadvd,v retrieving revision 1.9 diff -u -r1.9 rtadvd --- etc/rc.d/rtadvd 8 Mar 2004 12:25:05 -0000 1.9 +++ etc/rc.d/rtadvd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: rtadvd # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/rwho =================================================================== RCS file: /home/ncvs/src/etc/rc.d/rwho,v retrieving revision 1.3 diff -u -r1.3 rwho --- etc/rc.d/rwho 17 Jan 2004 10:16:38 -0000 1.3 +++ etc/rc.d/rwho 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: rwho # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/savecore =================================================================== RCS file: /home/ncvs/src/etc/rc.d/savecore,v retrieving revision 1.7 diff -u -r1.7 savecore --- etc/rc.d/savecore 18 Mar 2004 15:18:20 -0000 1.7 +++ etc/rc.d/savecore 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: savecore # REQUIRE: syslogd # BEFORE: SERVERS -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/securelevel =================================================================== RCS file: /home/ncvs/src/etc/rc.d/securelevel,v retrieving revision 1.9 diff -u -r1.9 securelevel --- etc/rc.d/securelevel 17 Jan 2004 11:11:18 -0000 1.9 +++ etc/rc.d/securelevel 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # # PROVIDE: securelevel -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/sendmail =================================================================== RCS file: /home/ncvs/src/etc/rc.d/sendmail,v retrieving revision 1.12 diff -u -r1.12 sendmail --- etc/rc.d/sendmail 5 Aug 2004 03:09:54 -0000 1.12 +++ etc/rc.d/sendmail 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: mail # REQUIRE: LOGIN -# KEYWORD: FreeBSD # we make mail start late, so that things like .forward's are not # processed until the system is fully operational Index: etc/rc.d/serial =================================================================== RCS file: /home/ncvs/src/etc/rc.d/serial,v retrieving revision 1.21 diff -u -r1.21 serial --- etc/rc.d/serial 8 Mar 2004 12:25:05 -0000 1.21 +++ etc/rc.d/serial 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: serial # REQUIRE: root -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail # Change some defaults for serial devices. # Standard defaults are: Index: etc/rc.d/sppp =================================================================== RCS file: /home/ncvs/src/etc/rc.d/sppp,v retrieving revision 1.3 diff -u -r1.3 sppp --- etc/rc.d/sppp 8 Mar 2004 12:25:05 -0000 1.3 +++ etc/rc.d/sppp 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: sppp # REQUIRE: root # BEFORE: netif -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/sshd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/sshd,v retrieving revision 1.6 diff -u -r1.6 sshd --- etc/rc.d/sshd 4 Aug 2004 08:10:37 -0000 1.6 +++ etc/rc.d/sshd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: sshd # REQUIRE: LOGIN -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/swap1 =================================================================== RCS file: /home/ncvs/src/etc/rc.d/swap1,v retrieving revision 1.7 diff -u -r1.7 swap1 --- etc/rc.d/swap1 17 Sep 2004 17:58:19 -0000 1.7 +++ etc/rc.d/swap1 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: localswap # REQUIRE: disks -# KEYWORD: FreeBSD nojail shutdown +# KEYWORD: nojail shutdown . /etc/rc.subr Index: etc/rc.d/syscons =================================================================== RCS file: /home/ncvs/src/etc/rc.d/syscons,v retrieving revision 1.12 diff -u -r1.12 syscons --- etc/rc.d/syscons 18 Jun 2004 20:09:30 -0000 1.12 +++ etc/rc.d/syscons 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: syscons # REQUIRE: LOGIN usbd -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/sysctl =================================================================== RCS file: /home/ncvs/src/etc/rc.d/sysctl,v retrieving revision 1.15 diff -u -r1.15 sysctl --- etc/rc.d/sysctl 17 Jan 2004 11:15:04 -0000 1.15 +++ etc/rc.d/sysctl 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: sysctl # REQUIRE: root # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/syslogd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/syslogd,v retrieving revision 1.9 diff -u -r1.9 syslogd --- etc/rc.d/syslogd 5 Mar 2004 07:55:04 -0000 1.9 +++ etc/rc.d/syslogd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: syslogd # REQUIRE: mountcritremote cleanvar # BEFORE: SERVERS -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/timed =================================================================== RCS file: /home/ncvs/src/etc/rc.d/timed,v retrieving revision 1.4 diff -u -r1.4 timed --- etc/rc.d/timed 8 Mar 2004 12:25:05 -0000 1.4 +++ etc/rc.d/timed 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,7 @@ # PROVIDE: timed # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/tmp =================================================================== RCS file: /home/ncvs/src/etc/rc.d/tmp,v retrieving revision 1.33 diff -u -r1.33 tmp --- etc/rc.d/tmp 13 Sep 2004 17:40:14 -0000 1.33 +++ etc/rc.d/tmp 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,6 @@ # PROVIDE: tmp # REQUIRE: mountcritlocal -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/usbd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/usbd,v retrieving revision 1.2 diff -u -r1.2 usbd --- etc/rc.d/usbd 8 Mar 2004 12:25:05 -0000 1.2 +++ etc/rc.d/usbd 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,7 @@ # PROVIDE: usbd # REQUIRE: DAEMON # BEFORE: LOGIN -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/var =================================================================== RCS file: /home/ncvs/src/etc/rc.d/var,v retrieving revision 1.33 diff -u -r1.33 var --- etc/rc.d/var 13 Sep 2004 17:40:14 -0000 1.33 +++ etc/rc.d/var 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,6 @@ # PROVIDE: var # REQUIRE: mountcritlocal -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/vinum =================================================================== RCS file: /home/ncvs/src/etc/rc.d/vinum,v retrieving revision 1.2 diff -u -r1.2 vinum --- etc/rc.d/vinum 8 Mar 2004 12:25:05 -0000 1.2 +++ etc/rc.d/vinum 26 Sep 2004 08:15:29 -0000 @@ -4,7 +4,7 @@ # # PROVIDE: disks -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/virecover =================================================================== RCS file: /home/ncvs/src/etc/rc.d/virecover,v retrieving revision 1.8 diff -u -r1.8 virecover --- etc/rc.d/virecover 3 Mar 2004 15:21:01 -0000 1.8 +++ etc/rc.d/virecover 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: virecover # REQUIRE: mountcritremote ldconfig # BEFORE: DAEMON -# KEYWORD: FreeBSD # # XXX: should require `mail'! Index: etc/rc.d/watchdogd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/watchdogd,v retrieving revision 1.3 diff -u -r1.3 watchdogd --- etc/rc.d/watchdogd 26 Apr 2004 19:41:37 -0000 1.3 +++ etc/rc.d/watchdogd 26 Sep 2004 08:15:29 -0000 @@ -29,7 +29,7 @@ # PROVIDE: watchdogd # REQUIRE: DAEMON -# KEYWORD: FreeBSD nojail +# KEYWORD: nojail . /etc/rc.subr Index: etc/rc.d/ypbind =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ypbind,v retrieving revision 1.8 diff -u -r1.8 ypbind --- etc/rc.d/ypbind 17 Jan 2004 10:59:43 -0000 1.8 +++ etc/rc.d/ypbind 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: ypbind # REQUIRE: ypserv # BEFORE: DAEMON -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/yppasswdd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/yppasswdd,v retrieving revision 1.9 diff -u -r1.9 yppasswdd --- etc/rc.d/yppasswdd 17 Jan 2004 10:59:43 -0000 1.9 +++ etc/rc.d/yppasswdd 26 Sep 2004 08:15:29 -0000 @@ -7,7 +7,6 @@ # PROVIDE: yppasswdd # REQUIRE: ypserv ypbind # BEFORE: LOGIN -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ypserv =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ypserv,v retrieving revision 1.10 diff -u -r1.10 ypserv --- etc/rc.d/ypserv 17 Jan 2004 11:19:01 -0000 1.10 +++ etc/rc.d/ypserv 26 Sep 2004 08:15:29 -0000 @@ -6,7 +6,6 @@ # PROVIDE: ypserv # REQUIRE: rpcbind -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ypset =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ypset,v retrieving revision 1.5 diff -u -r1.5 ypset --- etc/rc.d/ypset 9 Jul 2003 03:21:03 -0000 1.5 +++ etc/rc.d/ypset 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: ypset # REQUIRE: ypbind -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ypupdated =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ypupdated,v retrieving revision 1.4 diff -u -r1.4 ypupdated --- etc/rc.d/ypupdated 9 Jul 2003 03:21:03 -0000 1.4 +++ etc/rc.d/ypupdated 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: ypupdated # REQUIRE: rpcbind ypserv -# KEYWORD: FreeBSD . /etc/rc.subr Index: etc/rc.d/ypxfrd =================================================================== RCS file: /home/ncvs/src/etc/rc.d/ypxfrd,v retrieving revision 1.5 diff -u -r1.5 ypxfrd --- etc/rc.d/ypxfrd 9 Jul 2003 03:21:03 -0000 1.5 +++ etc/rc.d/ypxfrd 26 Sep 2004 08:15:29 -0000 @@ -5,7 +5,6 @@ # PROVIDE: ypxfrd # REQUIRE: rpcbind -# KEYWORD: FreeBSD . /etc/rc.subr --y0ulUmNC+osPPQO6-- From owner-freebsd-rc@FreeBSD.ORG Mon Sep 27 17:13:57 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C107316A4D0 for ; Mon, 27 Sep 2004 17:13:57 +0000 (GMT) Received: from smtp1.jazztel.es (smtp1.jazztel.es [62.14.3.161]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1FB443D3F for ; Mon, 27 Sep 2004 17:13:56 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp1.jazztel.es with antivirus id 1CBz4m-0008Ly-00 for freebsd-rc@freebsd.org Mon, 27 Sep 2004 19:14:12 +0200 Received: from [212.106.255.190] (helo=rguez.homeunix.net) by smtp1.jazztel.es with esmtp id 1CBz4m-0008Ll-00 for freebsd-rc@freebsd.org Mon, 27 Sep 2004 19:14:12 +0200 Received: from localhost.redesjm.local (orion.redesjm.local [192.168.254.16]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id i8RHDr0O019088 for ; Mon, 27 Sep 2004 19:13:54 +0200 (CEST) (envelope-from josemi@freebsd.jazztel.es) Date: Mon, 27 Sep 2004 19:13:53 +0200 To: freebsd-rc@freebsd.org From: "Jose M Rodriguez" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: User-Agent: Opera M2/7.54 (FreeBSD, build 751) X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.27.0.11; VDF 6.27.0.70 (host: antares.redesjm.local) X-Virus-Scanned: by antivirus Subject: rcNG problems on RELENG_5 X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2004 17:13:57 -0000 Hi, I'm in the way of make /etc/rc.d/xdm operative to lanunch Xorg/gdm/kdm/xdm from rc. I now have a working patch, but I have to change the name of the script from xdm to 0xdm. The reason seems to be a lot of BEFORE: tags missing. At last, several IMHO important 'BEFORE: LOGIN' ones. This is a known issue? May I send-pr this? where? -- josemi rcorder -k FreeBSD -s nostart /etc/rc.d/* ... /etc/rc.d/LOGIN /etc/rc.d/syscons /etc/rc.d/xdm /etc/rc.d/watchdogd /etc/rc.d/sshd /etc/rc.d/sendmail /etc/rc.d/archdep /etc/rc.d/abi /etc/rc.d/cron /etc/rc.d/devfs /etc/rc.d/jail /etc/rc.d/localpkg /etc/rc.d/netoptions /etc/rc.d/securelevel /etc/rc.d/resolv /etc/rc.d/pcvt /etc/rc.d/othermta /etc/rc.d/nsswitch /etc/rc.d/msgs /etc/rc.d/mixer /etc/rc.d/inetd /etc/rc.d/bgfsck -- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ From owner-freebsd-rc@FreeBSD.ORG Mon Sep 27 19:55:19 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BCAE16A4CF for ; Mon, 27 Sep 2004 19:55:19 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23CA443D48 for ; Mon, 27 Sep 2004 19:55:19 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i8RJwkcG009662; Mon, 27 Sep 2004 12:58:46 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i8RJwkfa009661; Mon, 27 Sep 2004 12:58:46 -0700 Date: Mon, 27 Sep 2004 12:58:45 -0700 From: Brooks Davis To: Mike Makonnen Message-ID: <20040927195845.GC1016@odin.ac.hmc.edu> References: <20040926160418.GB22015@rogue.acs.lan> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NU0Ex4SbNnrxsi6C" Content-Disposition: inline In-Reply-To: <20040926160418.GB22015@rogue.acs.lan> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: freebsd-rc@freebsd.org Subject: Re: Removing the FreeBSD keyword X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Sep 2004 19:55:19 -0000 --NU0Ex4SbNnrxsi6C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Sep 26, 2004 at 07:04:18PM +0300, Mike Makonnen wrote: > Hi folks, >=20 > I would like to remove the requirement that an rc.d script have > a FreeBSD keyword. Since it's pretty clear that NetBSD and FreeBSD > aren't going to share scripts the reason for the requirement no longer > exists. If we can agree on this I would like to MFC it to RELENG_5. > If it doesn't get MFCed it must be there for the entire 5.x life-cycle > (which seems pretty stupid for something without any benefits). >=20 > Getting rid of the requirement will also allow us to more easily > implement what people have been asking for, for some time now: > manipulating a group of related services. All those mergemaster runs are going to hurt, but I think it's a good idea. -- Brooks --NU0Ex4SbNnrxsi6C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBWHD1XY6L6fI4GtQRAg8aAKCsOzEZMGz3HzLhFPz1GRiRpja4lgCgzjIc PGacpc7TsFhueaN1kR5y7OY= =7IES -----END PGP SIGNATURE----- --NU0Ex4SbNnrxsi6C-- From owner-freebsd-rc@FreeBSD.ORG Tue Sep 28 08:14:27 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BAAE16A4CE for ; Tue, 28 Sep 2004 08:14:27 +0000 (GMT) Received: from telecom.net.et (sparrow.telecom.net.et [213.55.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA3E543D5C for ; Tue, 28 Sep 2004 08:14:22 +0000 (GMT) (envelope-from mtm@identd.net) Received: from [213.55.68.123] (HELO rogue.acs.lan) by telecom.net.et (CommuniGate Pro SMTP 3.4.8) with ESMTP id 58438976; Tue, 28 Sep 2004 11:07:15 +0300 Received: by rogue.acs.lan (Postfix, from userid 1000) id 780A9B886; Tue, 28 Sep 2004 11:14:16 +0300 (EAT) Date: Tue, 28 Sep 2004 11:14:16 +0300 From: Mike Makonnen To: Jose M Rodriguez Message-ID: <20040928081416.GA1372@rogue.acs.lan> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD/6.0-CURRENT (i386) cc: freebsd-rc@freebsd.org Subject: Re: rcNG problems on RELENG_5 X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2004 08:14:27 -0000 On Mon, Sep 27, 2004 at 07:13:53PM +0200, Jose M Rodriguez wrote: > > Hi, > > I'm in the way of make /etc/rc.d/xdm operative to lanunch Xorg/gdm/kdm/xdm > from rc. > > I now have a working patch, but I have to change the name of the script > from xdm to 0xdm. > > The reason seems to be a lot of BEFORE: tags missing. At last, several > IMHO important 'BEFORE: LOGIN' ones. > > This is a known issue? What's the issue? The LOGIN script is there so that user logins and other initiated actions do not occur untill the system is almost fully started. What's the problem and how is this related to the xdm/getty issue? Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: AC7B 5672 2D11 F4D0 EBF8 5279 5359 2B82 7CD4 1F55 mtm@FreeBSD.Org| FreeBSD - Unleash the Daemon ! From owner-freebsd-rc@FreeBSD.ORG Tue Sep 28 09:35:05 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A20116A4CE for ; Tue, 28 Sep 2004 09:35:05 +0000 (GMT) Received: from smtp2.jazztel.es (smtp2.jazztel.es [62.14.3.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0703E43D54 for ; Tue, 28 Sep 2004 09:35:05 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp2.jazztel.es with antivirus id 1CCENt-0005aR-00 Tue, 28 Sep 2004 11:34:57 +0200 Received: from [212.106.236.118] (helo=rguez.homeunix.net) by smtp2.jazztel.es with esmtp id 1CCENs-0005Z5-00 Tue, 28 Sep 2004 11:34:56 +0200 Received: from localhost.redesjm.local (orion.redesjm.local [192.168.254.16]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id i8S9EBuY017014; Tue, 28 Sep 2004 11:14:15 +0200 (CEST) (envelope-from josemi@freebsd.jazztel.es) Date: Tue, 28 Sep 2004 11:14:10 +0200 To: "Mike Makonnen" References: <20040928081416.GA1372@rogue.acs.lan> From: "Jose M Rodriguez" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20040928081416.GA1372@rogue.acs.lan> User-Agent: Opera M2/7.54 (FreeBSD, build 751) X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.27.0.11; VDF 6.27.0.70 (host: antares.redesjm.local) X-Virus-Scanned: by antivirus cc: freebsd-rc@freebsd.org Subject: Re: rcNG problems on RELENG_5 X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2004 09:35:05 -0000 On Tue, 28 Sep 2004 11:14:16 +0300, Mike Makonnen wrote: > On Mon, Sep 27, 2004 at 07:13:53PM +0200, Jose M Rodriguez wrote: >> >> Hi, >> >> I'm in the way of make /etc/rc.d/xdm operative to lanunch >> Xorg/gdm/kdm/xdm >> from rc. >> >> I now have a working patch, but I have to change the name of the script >> from xdm to 0xdm. >> >> The reason seems to be a lot of BEFORE: tags missing. At last, several >> IMHO important 'BEFORE: LOGIN' ones. >> >> This is a known issue? > > What's the issue? The LOGIN script is there so that user logins and other > initiated actions do not occur untill the system is almost fully started. > What's the problem and how is this related to the xdm/getty issue? > > Cheers. There is a last process in the rc boot: init that launch gettys via /etc/ttys. xdm really needs gettys running when it comes up, this is a race condiction between xdm an init. I've got problems with this since /usr/X11R6/etc/rc.d/gdm.sh hit the tree. With /etc/rc.d/xdm is even worse. rcGN really lacks BEFORE tags that isolates a 'near last' stage where just that things with gettys race problems lives. ¿Why to Solve? - By a new 'syncpoint' before LOGIN and moving to this all those things that are run at LOGIN and _not_ related to gettys or similar. - By a a new 'syncpoint' after login (LAST?) that make possible put things for run really as the very last of rcorder. After renaming xdm to 0xdm, my race problems gone away, but I thing this must be take in account for rcNG developpment. -- josemi -- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ From owner-freebsd-rc@FreeBSD.ORG Tue Sep 28 12:07:59 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BE1C16A4CE for ; Tue, 28 Sep 2004 12:07:59 +0000 (GMT) Received: from telecom.net.et (sparrow.telecom.net.et [213.55.64.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4923643D5E for ; Tue, 28 Sep 2004 12:07:52 +0000 (GMT) (envelope-from mtm@identd.net) Received: from [213.55.68.122] (HELO rogue.acs.lan) by telecom.net.et (CommuniGate Pro SMTP 3.4.8) with ESMTP id 58461413; Tue, 28 Sep 2004 15:00:47 +0300 Received: by rogue.acs.lan (Postfix, from userid 1000) id 109A0B886; Tue, 28 Sep 2004 15:07:53 +0300 (EAT) Date: Tue, 28 Sep 2004 15:07:53 +0300 From: Mike Makonnen To: Jose M Rodriguez Message-ID: <20040928120752.GA1992@rogue.acs.lan> References: <20040928081416.GA1372@rogue.acs.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD/6.0-CURRENT (i386) cc: freebsd-rc@freebsd.org Subject: Re: rcNG problems on RELENG_5 X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2004 12:07:59 -0000 On Tue, Sep 28, 2004 at 11:14:10AM +0200, Jose M Rodriguez wrote: > On Tue, 28 Sep 2004 11:14:16 +0300, Mike Makonnen wrote: > > There is a last process in the rc boot: init that launch gettys via > /etc/ttys. > xdm really needs gettys running when it comes up, this is a race condiction > between xdm an init. > > I've got problems with this since /usr/X11R6/etc/rc.d/gdm.sh hit the > tree. With > /etc/rc.d/xdm is even worse. > > rcGN really lacks BEFORE tags that isolates a 'near last' stage where just > that things with gettys race problems lives. ?Why to Solve? > > - By a new 'syncpoint' before LOGIN and moving to this all those things > that are run at LOGIN and _not_ related to gettys or similar. > > - By a a new 'syncpoint' after login (LAST?) that make possible put things > for run really as the very last of rcorder. > > After renaming xdm to 0xdm, my race problems gone away, but I thing this > must be take in account for rcNG developpment. >From what I gather your problem is that you can't position the xdm script to win the race with getty. Correct? If so, you're going about it the wrong way. You shouldn't be looking at strategies to win the race. Rather, you should be looking at ways to eliminate the race itself. The first step is to understand why xdm depends on init starting the gettys. For example I use gdm and it's started from a startup script. My /etc/ttys has ttyv8, the tty on which gdm starts, turned off. So, how does init starting the gettys on the other terminals affect X? It seems to me that the problem really isn't with init's starting of gettys but some other side-effect of that. In short, we should understand EXACTLY what the problem is before going off and trying to solve it. Cheers. -- Mike Makonnen | GPG-KEY: http://www.identd.net/~mtm/mtm.asc mtm@identd.net | Fingerprint: AC7B 5672 2D11 F4D0 EBF8 5279 5359 2B82 7CD4 1F55 mtm@FreeBSD.Org| FreeBSD - Unleash the Daemon ! From owner-freebsd-rc@FreeBSD.ORG Tue Sep 28 14:18:21 2004 Return-Path: Delivered-To: freebsd-rc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C30816A4CE for ; Tue, 28 Sep 2004 14:18:21 +0000 (GMT) Received: from smtp2.jazztel.es (smtp2.jazztel.es [62.14.3.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E1143D5A for ; Tue, 28 Sep 2004 14:18:20 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from antivirus by smtp2.jazztel.es with antivirus id 1CCIo2-00019h-00 Tue, 28 Sep 2004 16:18:14 +0200 Received: from [212.106.236.118] (helo=rguez.homeunix.net) by smtp2.jazztel.es with esmtp id 1CCIo1-00019V-00 Tue, 28 Sep 2004 16:18:14 +0200 Received: from localhost.redesjm.local (orion.redesjm.local [192.168.254.16]) by rguez.homeunix.net (8.13.1/8.13.1) with ESMTP id i8SEIGCX044037; Tue, 28 Sep 2004 16:18:17 +0200 (CEST) (envelope-from josemi@freebsd.jazztel.es) Date: Tue, 28 Sep 2004 16:18:15 +0200 To: "Mike Makonnen" References: <20040928081416.GA1372@rogue.acs.lan> <20040928120752.GA1992@rogue.acs.lan> From: "Jose M Rodriguez" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20040928120752.GA1992@rogue.acs.lan> User-Agent: Opera M2/7.54 (FreeBSD, build 751) X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.27.0.11; VDF 6.27.0.70 (host: antares.redesjm.local) X-Virus-Scanned: by antivirus cc: freebsd-rc@freebsd.org Subject: Re: rcNG problems on RELENG_5 X-BeenThere: freebsd-rc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussion related to /etc/rc.d design and implementation. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2004 14:18:21 -0000 On Tue, 28 Sep 2004 15:07:53 +0300, Mike Makonnen wrote: > On Tue, Sep 28, 2004 at 11:14:10AM +0200, Jose M Rodriguez wrote: >> On Tue, 28 Sep 2004 11:14:16 +0300, Mike Makonnen >> wrote: >> >> There is a last process in the rc boot: init that launch gettys via >> /etc/ttys. >> xdm really needs gettys running when it comes up, this is a race >> condiction >> between xdm an init. >> ... > > The first step is to understand > why xdm depends on init starting the gettys. For example I use gdm and > it's > started from a startup script. My /etc/ttys has ttyv8, the tty on which > gdm > starts, turned off. So, how does init starting the gettys on the other > terminals > affect X? It seems to me that the problem really isn't > with init's starting of gettys but some other side-effect of that. > > In short, we should understand EXACTLY what the problem is before going > off and trying to solve it. > > Cheers. First, I resolve it now renaming xdm 0xdm. Now, I can won the race. The problem can also be present in your setup. Is related to XServer using a dynamic tty alloc on FreeBSD by default. If xdm/kdm/gdm Xserver is up before the gettys, it gets /dev/ttyv1, not /dev/ttyv8. I'm looking now how to make Xserver tty alloc static, but my free time is limited. In any way, I think that the developpment of rcNG must take this on account. It's no other method that lex order to put a script at the end of rcorder. -- josemi -- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/