home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / rescue / usr / share / mkinitrd / hotplug.sh
Linux/UNIX/POSIX Shell Script  |  2006-11-29  |  427b  |  23 lines

  1. #!/bin/sh
  2. #
  3. # /sbin/hotplug.sh
  4. # $Id: hotplug.sh,v 1.1 2005/01/20 10:38:11 hare Exp $
  5. #
  6. # Simple hotplug script for initramfs
  7. # Records all events if requested and starts up udev
  8. #
  9.  
  10. # Records all events if requested
  11. if [ -d /events -a -x /sbin/hotplugeventrecorder ] ; then
  12.     /sbin/hotplugeventrecorder $1 2>/dev/null
  13. fi
  14.  
  15. AGENT=/sbin/udev
  16.  
  17. if [ -x $AGENT ]; then
  18.     exec $AGENT $@
  19.     echo "couldn't exec $AGENT"
  20. fi
  21.  
  22. exit 1
  23.