2002-11-09 07:45:53 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
# PROVIDE: devd
|
2006-09-21 14:29:32 +00:00
|
|
|
# REQUIRE: netif network_ipv6
|
2006-06-01 00:41:07 +00:00
|
|
|
# BEFORE: NETWORKING mountcritremote
|
2004-10-07 13:55:26 +00:00
|
|
|
# KEYWORD: nojail
|
2002-11-09 07:45:53 +00:00
|
|
|
|
|
|
|
. /etc/rc.subr
|
|
|
|
|
|
|
|
name="devd"
|
|
|
|
rcvar=`set_rcvar`
|
2005-10-28 16:55:38 +00:00
|
|
|
command="/sbin/${name}"
|
2002-11-09 07:45:53 +00:00
|
|
|
|
|
|
|
load_rc_config $name
|
|
|
|
run_rc_command "$1"
|
2002-11-30 00:40:53 +00:00
|
|
|
|
|
|
|
# If devd is disabled, turn it off in the kernel to avoid memory leaks.
|
|
|
|
if ! checkyesno ${rcvar}; then
|
|
|
|
sysctl hw.bus.devctl_disable=1
|
|
|
|
fi
|