udev: switch to OpenRC; bump revision.

--HG--
extra : convert_revision : 5fdfb64e584411c294ecadb2dc90286056313905
This commit is contained in:
Juan RP 2009-05-04 21:44:24 +02:00
parent 2ed7b24d16
commit 4e869cddf8
4 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,25 @@
#!/sbin/runscript
#
# OpenRC service for udev(7).
command=/sbin/udevd
command_args="--daemon"
name="UDev Daemon"
depend()
{
provide dev
need sysfs
before checkfs fsck
keyword novserver
}
start()
{
echo > /proc/sys/kernel/hotplug
ebegin "Starting UDev and waiting for uevents"
${command} ${command_args} && \
udevadm trigger && udevadm settle
eend $?
}