2008-03-03 02:44:01 +05:30
|
|
|
#!@PREFIX@/sbin/runscript
|
2009-05-01 19:41:40 +05:30
|
|
|
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
|
2008-01-11 21:01:10 +05:30
|
|
|
# All rights reserved. Released under the 2-clause BSD license.
|
2007-11-23 17:46:12 +05:30
|
|
|
|
|
|
|
command=/sbin/devd
|
2009-04-27 13:21:18 +05:30
|
|
|
command_args=$devd_args
|
2007-11-23 17:46:12 +05:30
|
|
|
name="Device State Change Daemon"
|
|
|
|
|
|
|
|
depend() {
|
|
|
|
need localmount
|
|
|
|
after bootmisc
|
|
|
|
before net.lo0
|
2009-07-01 04:37:32 +05:30
|
|
|
keyword -jail -prefix
|
2007-11-23 17:46:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
start_pre() {
|
2008-03-23 17:54:15 +05:30
|
|
|
sysctl hw.bus.devctl_disable=0 >/dev/null
|
2007-11-23 17:46:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
stop_post() {
|
2008-03-23 17:54:15 +05:30
|
|
|
sysctl hw.bus.devctl_disable=1 >/dev/null
|
2007-11-23 17:46:12 +05:30
|
|
|
}
|