openrc/init.d.FreeBSD/devd.in

23 lines
429 B
Plaintext
Raw Normal View History

2007-11-23 17:46:12 +05:30
#!/sbin/runscript
# 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-03-03 02:43:21 +05:30
keyword nojail noprefix
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
}