home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
rescue
/
etc
/
init.d
/
boot.udev_retry
< prev
next >
Wrap
Text File
|
2006-11-29
|
705b
|
43 lines
#!/bin/sh
#
### BEGIN INIT INFO
# Provides: boot.udev_retry
# Required-Start: boot.rootfsck
# Should-Start: $local_fs
# Default-Start: B
# Default-Stop:
# Description: Retry to configure failed devices after localfs.
### END INIT INFO
. /etc/rc.status
case "$1" in
start)
if test -d /dev/.udev/failed; then
echo -n "Retry device configuration"
udevtrigger --retry-failed
rc_status $status -r -v
fi
;;
stop)
rc_status -v
;;
restart)
rc_status -v
;;
status)
rc_status -v
;;
reload)
rc_status -v
;;
force-reload)
rc_status -v
;;
*)
echo "Usage: $0 {start|stop|restart|status|reload|force-reload}"
exit 1
;;
esac
rc_exit