diff options
| author | Warner Losh <imp@FreeBSD.org> | 2002-11-09 07:45:53 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2002-11-09 07:45:53 +0000 |
| commit | 7b13078b418c201fea43449e4ca51d21543a84bc (patch) | |
| tree | 4e5fee3853fd1a5cb7807e366553042dca5abd18 /etc | |
| parent | 490eeb06b4123ff20a8e668a4444ebed17a77051 (diff) | |
Notes
Diffstat (limited to 'etc')
| -rwxr-xr-x | etc/rc.d/Makefile | 2 | ||||
| -rw-r--r-- | etc/rc.d/devd | 17 |
2 files changed, 18 insertions, 1 deletions
diff --git a/etc/rc.d/Makefile b/etc/rc.d/Makefile index b9408e5dee33..53e1382f9f98 100755 --- a/etc/rc.d/Makefile +++ b/etc/rc.d/Makefile @@ -5,7 +5,7 @@ FILES= DAEMON LOGIN NETWORKING SERVERS abi accounting addswap adjkerntz amd \ apm apmd atm1 atm2.sh atm3.sh archdep bgfsck bootparams ccd cleanvar \ - cleartmp cron devdb devfs diskless dmesg dumpon fsck inetd \ + cleartmp cron devd devdb devfs diskless dmesg dumpon fsck inetd \ initdiskless initrandom ip6fw ipfilter ipfw ipmon ipnat ipsec \ ipxrouted isdnd kadmind kerberos keyserv ldconfig local \ localdaemons lomac lpd motd mountcritlocal mountcritremote \ diff --git a/etc/rc.d/devd b/etc/rc.d/devd new file mode 100644 index 000000000000..7702c77bc792 --- /dev/null +++ b/etc/rc.d/devd @@ -0,0 +1,17 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: devd +# REQUIRE: devfs +# KEYWORD: FreeBSD + +. /etc/rc.subr + +name="devd" +rcvar=`set_rcvar` +command="/sbin/devd" + +load_rc_config $name +run_rc_command "$1" |
