2007-11-23 17:46:12 +05:30
|
|
|
#!/sbin/runscript
|
2008-01-11 21:01:10 +05:30
|
|
|
# Copyright 2007-2008 Roy Marples <roy@marples.name>
|
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-23 17:46:12 +05:30
|
|
|
|
|
|
|
command=/sbin/devd
|
|
|
|
command_args=${devd_args}
|
|
|
|
name="Device State Change Daemon"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need localmount
|
|
|
|
after bootmisc
|
|
|
|
before net.lo0
|
2008-02-19 19:45:53 +05:30
|
|
|
keywords nojail
|
2007-11-23 17:46:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
start_pre() {
|
|
|
|
sysctl hw.bus.devctl_disable=0 >/dev/null
|
|
|
|
}
|
|
|
|
|
|
|
|
stop_post() {
|
|
|
|
sysctl hw.bus.devctl_disable=1 >/dev/null
|
|
|
|
}
|