openrc/init.d/devd.in

23 lines
402 B
Plaintext
Raw Normal View History

#!@PREFIX@/sbin/runscript
2009-05-01 19:41:40 +05:30
# Copyright (c) 2007-2008 Roy Marples <roy@marples.name>
# 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
keyword -jail
2007-11-23 17:46:12 +05:30
}
start_pre() {
sysctl hw.bus.devctl_disable=0 >/dev/null
2007-11-23 17:46:12 +05:30
}
stop_post() {
sysctl hw.bus.devctl_disable=1 >/dev/null
2007-11-23 17:46:12 +05:30
}