Date: Sun, 26 Sep 2004 19:04:18 +0300 From: Mike Makonnen <mtm@identd.net> To: freebsd-rc@freebsd.org Subject: Removing the FreeBSD keyword Message-ID: <20040926160418.GB22015@rogue.acs.lan>
next in thread | raw e-mail | index | archive | help
--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--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040926160418.GB22015>