diff options
author | Bill Nottingham <notting@redhat.com> | 2005-01-12 21:45:30 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-01-12 21:45:30 +0000 |
commit | 0a86b60f1c8a40e9171e6f7fd87ce338b1fbd42a (patch) | |
tree | 771e6757c355198fc4e127e52a1b19428f5a063d /rc.d | |
parent | b458cb71e6ed9e598eeb390d51f6d4ec6425fbc4 (diff) | |
download | initscripts-0a86b60f1c8a40e9171e6f7fd87ce338b1fbd42a.tar initscripts-0a86b60f1c8a40e9171e6f7fd87ce338b1fbd42a.tar.gz initscripts-0a86b60f1c8a40e9171e6f7fd87ce338b1fbd42a.tar.bz2 initscripts-0a86b60f1c8a40e9171e6f7fd87ce338b1fbd42a.tar.xz initscripts-0a86b60f1c8a40e9171e6f7fd87ce338b1fbd42a.zip |
use udevsend to handle hotplug events, conflict with inappropriate
udev versions
Diffstat (limited to 'rc.d')
-rwxr-xr-x | rc.d/rc.sysinit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit index 48284c1b..236df880 100755 --- a/rc.d/rc.sysinit +++ b/rc.d/rc.sysinit @@ -128,7 +128,7 @@ cmdline=$(cat /proc/cmdline) if [ -f /proc/sys/kernel/modprobe ]; then if ! strstr "$cmdline" nomodules && [ -f /proc/modules ] ; then sysctl -w kernel.modprobe="/sbin/modprobe" >/dev/null 2>&1 - sysctl -w kernel.hotplug="/sbin/hotplug" >/dev/null 2>&1 + sysctl -w kernel.hotplug="/sbin/udevsend" >/dev/null 2>&1 else # We used to set this to NULL, but that causes 'failed to exec' messages" sysctl -w kernel.modprobe="/bin/true" >/dev/null 2>&1 |