Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/etc/rc.d * replace daemon, login, servers with DAEMON, LOGIN...
details: https://anonhg.NetBSD.org/src/rev/4ed3fcd91496
branches: trunk
changeset: 483565:4ed3fcd91496
user: lukem <lukem%NetBSD.org@localhost>
date: Mon Mar 13 04:03:52 2000 +0000
description:
* replace daemon, login, servers with DAEMON, LOGIN, SERVERS
* remove sshd (it was from my private system)
diffstat:
etc/rc.d/DAEMON | 12 ++++++++++++
etc/rc.d/LOGIN | 15 +++++++++++++++
etc/rc.d/Makefile | 19 +++++++++----------
etc/rc.d/SERVERS | 10 ++++++++++
etc/rc.d/apmd | 4 ++--
etc/rc.d/bootparams | 4 ++--
etc/rc.d/cron | 4 ++--
etc/rc.d/daemon | 12 ------------
etc/rc.d/dhcpd | 4 ++--
etc/rc.d/dhcrelay | 4 ++--
etc/rc.d/gated | 4 ++--
etc/rc.d/inetd | 4 ++--
etc/rc.d/kerberos | 4 ++--
etc/rc.d/local | 6 +++---
etc/rc.d/login | 15 ---------------
etc/rc.d/lpd | 4 ++--
etc/rc.d/mopd | 4 ++--
etc/rc.d/mrouted | 4 ++--
etc/rc.d/named | 4 ++--
etc/rc.d/rarpd | 4 ++--
etc/rc.d/rbootd | 4 ++--
etc/rc.d/route6d | 4 ++--
etc/rc.d/routed | 4 ++--
etc/rc.d/rtadvd | 4 ++--
etc/rc.d/rtsold | 4 ++--
etc/rc.d/rwho | 4 ++--
etc/rc.d/screenblank | 4 ++--
etc/rc.d/sendmail | 6 +++---
etc/rc.d/servers | 10 ----------
etc/rc.d/sshd | 17 -----------------
etc/rc.d/swap2 | 4 ++--
etc/rc.d/timed | 4 ++--
etc/rc.d/xdm | 4 ++--
etc/rc.d/xntpd | 4 ++--
34 files changed, 100 insertions(+), 118 deletions(-)
diffs (truncated from 569 to 300 lines):
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/DAEMON
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/etc/rc.d/DAEMON Mon Mar 13 04:03:52 2000 +0000
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# $NetBSD: DAEMON,v 1.1 2000/03/13 04:03:52 lukem Exp $
+#
+
+# PROVIDE: DAEMON
+# REQUIRE: named sysctl cleartmp ldconfig accounting amd virecover ypbind
+# REQUIRE: ipnat ipmon savecore pwcheck quota databases network dmesg
+# REQUIRE: aftermountlkm nfslocking
+
+# This is a dummy dependancy, to ensure that daemons are run
+# _after_ the above are.
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/LOGIN
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/etc/rc.d/LOGIN Mon Mar 13 04:03:52 2000 +0000
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# $NetBSD: LOGIN,v 1.1 2000/03/13 04:03:53 lukem Exp $
+#
+
+# PROVIDE: LOGIN
+# REQUIRE: gated routed mrouted timed xntpd dhcpd dhcrelay rwho lpd bootparams
+# REQUIRE: xfs rarpd rbootd mopd apmd screenblank motd local
+# REQUIRE: route6d rtadvd rtsold wscons yppasswdd
+
+
+# This is a dummy to ensure that xdm, inetd, cron and kerberos are
+# started after everything else, incase the user has increased the
+# system security level, and because we want to delay user logins
+# until the system is (almost) fully operational.
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/Makefile
--- a/etc/rc.d/Makefile Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/Makefile Mon Mar 13 04:03:52 2000 +0000
@@ -1,14 +1,13 @@
-# $NetBSD: Makefile,v 1.1.1.1 2000/03/10 11:53:23 lukem Exp $
+# $NetBSD: Makefile,v 1.2 2000/03/13 04:03:53 lukem Exp $
-FILES= accounting amd apmd bootparams bootconf.sh ccd cleartmp cron daemon \
- dhclient dhcpd dhcrelay dmesg fsck.sh gated inetd ipfilter ipmon ipnat \
- kerberos ldconfig lkm1 lkm2 lkm3 local login lpd mopd motd \
- mountall mountcritlocal mountcritremote mountd mrouted named network \
- nfsd nfsiod nfslocking ntpdate portmap ppp pwcheck quota raidframe \
- rarpd rbootd root route6d routed rtadvd rtsold rwho savecore \
- screenblank sendmail servers sshd swap1 swap2 sysdb sysctl syslogd \
- systemfs timed ttys virecover wscons xdm xfs xntpd ypbind yppasswdd \
- ypserv
+FILES= DAEMON LOGIN SERVERS accounting amd apmd bootparams bootconf.sh ccd \
+ cleartmp cron dhclient dhcpd dhcrelay dmesg fsck.sh gated inetd \
+ ipfilter ipmon ipnat kerberos ldconfig lkm1 lkm2 lkm3 local lpd mopd \
+ motd mountall mountcritlocal mountcritremote mountd mrouted named \
+ network nfsd nfsiod nfslocking ntpdate portmap ppp pwcheck quota \
+ raidframe rarpd rbootd root route6d routed rtadvd rtsold rwho savecore \
+ screenblank sendmail swap1 swap2 sysdb sysctl syslogd systemfs timed \
+ ttys virecover wscons xdm xfs xntpd ypbind yppasswdd ypserv
FILESDIR= /etc/rc.d
FILESMODE= ${BINMODE}
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/SERVERS
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/etc/rc.d/SERVERS Mon Mar 13 04:03:52 2000 +0000
@@ -0,0 +1,10 @@
+#!/bin/sh
+#
+# $NetBSD: SERVERS,v 1.1 2000/03/13 04:03:54 lukem Exp $
+#
+
+# PROVIDE: SERVERS
+# REQUIRE: ipmon savecore syslogd
+
+# This is a dummy dependancy, for early-start servers relying on
+# some basic configuration.
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/apmd
--- a/etc/rc.d/apmd Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/apmd Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: apmd,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: apmd,v 1.2 2000/03/13 04:03:55 lukem Exp $
#
# PROVIDE: apmd
-# REQUIRE: daemon
+# REQUIRE: DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/bootparams
--- a/etc/rc.d/bootparams Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/bootparams Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: bootparams,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: bootparams,v 1.2 2000/03/13 04:03:55 lukem Exp $
#
# PROVIDE: bootparams
-# REQUIRE: portmap daemon
+# REQUIRE: portmap DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/cron
--- a/etc/rc.d/cron Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/cron Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: cron,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: cron,v 1.2 2000/03/13 04:03:55 lukem Exp $
#
# PROVIDE: cron
-# REQUIRE: login
+# REQUIRE: LOGIN
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/daemon
--- a/etc/rc.d/daemon Mon Mar 13 03:25:20 2000 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-#!/bin/sh
-#
-# $NetBSD: daemon,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
-#
-
-# PROVIDE: daemon
-# REQUIRE: named sysctl cleartmp ldconfig accounting amd virecover ypbind
-# REQUIRE: ipnat ipmon savecore pwcheck quota databases network dmesg
-# REQUIRE: aftermountlkm nfslocking
-
-# This is a dummy dependancy, to ensure that daemons are run
-# _after_ the above are.
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/dhcpd
--- a/etc/rc.d/dhcpd Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/dhcpd Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: dhcpd,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: dhcpd,v 1.2 2000/03/13 04:03:57 lukem Exp $
#
# PROVIDE: dhcpd
-# REQUIRE: daemon
+# REQUIRE: DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/dhcrelay
--- a/etc/rc.d/dhcrelay Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/dhcrelay Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: dhcrelay,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: dhcrelay,v 1.2 2000/03/13 04:03:57 lukem Exp $
#
# PROVIDE: dhcrelay
-# REQUIRE: daemon
+# REQUIRE: DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/gated
--- a/etc/rc.d/gated Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/gated Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: gated,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: gated,v 1.2 2000/03/13 04:03:57 lukem Exp $
#
# PROVIDE: gated
-# REQUIRE: daemon
+# REQUIRE: DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/inetd
--- a/etc/rc.d/inetd Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/inetd Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: inetd,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: inetd,v 1.2 2000/03/13 04:03:57 lukem Exp $
#
# PROVIDE: inetd
-# REQUIRE: daemon login
+# REQUIRE: DAEMON LOGIN
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/kerberos
--- a/etc/rc.d/kerberos Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/kerberos Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: kerberos,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: kerberos,v 1.2 2000/03/13 04:03:57 lukem Exp $
#
# PROVIDE: kerberos
-# REQUIRE: daemon login
+# REQUIRE: DAEMON LOGIN
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/local
--- a/etc/rc.d/local Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/local Mon Mar 13 04:03:52 2000 +0000
@@ -1,11 +1,11 @@
#!/bin/sh
#
-# $NetBSD: local,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
+# $NetBSD: local,v 1.2 2000/03/13 04:03:58 lukem Exp $
#
-# REQUIRE: daemon
+# REQUIRE: DAEMON
# PROVIDE: local
-# BEFORE: login
+# BEFORE: LOGIN
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/login
--- a/etc/rc.d/login Mon Mar 13 03:25:20 2000 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-#!/bin/sh
-#
-# $NetBSD: login,v 1.1.1.1 2000/03/10 11:53:25 lukem Exp $
-#
-
-# PROVIDE: login
-# REQUIRE: gated routed mrouted timed xntpd dhcpd dhcrelay rwho lpd bootparams
-# REQUIRE: xfs rarpd rbootd mopd apmd screenblank motd local
-# REQUIRE: route6d rtadvd rtsold wscons yppasswdd
-
-
-# This is a dummy to ensure that xdm, inetd, cron and kerberos are
-# started after everything else, incase the user has increased the
-# system security level, and because we want to delay user logins
-# until the system is (almost) fully operational.
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/lpd
--- a/etc/rc.d/lpd Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/lpd Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: lpd,v 1.1.1.1 2000/03/10 11:53:24 lukem Exp $
+# $NetBSD: lpd,v 1.2 2000/03/13 04:04:00 lukem Exp $
#
# PROVIDE: lpd
-# REQUIRE: daemon
+# REQUIRE: DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/mopd
--- a/etc/rc.d/mopd Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/mopd Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: mopd,v 1.1.1.1 2000/03/10 11:53:24 lukem Exp $
+# $NetBSD: mopd,v 1.2 2000/03/13 04:04:00 lukem Exp $
#
# PROVIDE: mopd
-# REQUIRE: daemon
+# REQUIRE: DAEMON
. /etc/rc.subr
. /etc/rc.conf
diff -r b23d7fe0bcad -r 4ed3fcd91496 etc/rc.d/mrouted
--- a/etc/rc.d/mrouted Mon Mar 13 03:25:20 2000 +0000
+++ b/etc/rc.d/mrouted Mon Mar 13 04:03:52 2000 +0000
@@ -1,10 +1,10 @@
#!/bin/sh
#
-# $NetBSD: mrouted,v 1.1.1.1 2000/03/10 11:53:24 lukem Exp $
+# $NetBSD: mrouted,v 1.2 2000/03/13 04:04:01 lukem Exp $
#
# PROVIDE: mrouted
Home |
Main Index |
Thread Index |
Old Index