]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/initscripts/init.d/udev_retry
Move all Initscripts of the system, into an extra directory
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / udev_retry
diff --git a/src/initscripts/init.d/udev_retry b/src/initscripts/init.d/udev_retry
deleted file mode 100644 (file)
index 25e6967..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh
-########################################################################
-# Begin $rc_base/init.d/udev_retry
-#
-# Description : Udev cold-plugging script (retry)
-#
-# Authors     : Alexander E. Patrakov
-#
-# Version     : 00.02
-#
-# Notes       :
-#
-########################################################################
-
-. /etc/sysconfig/rc
-. ${rc_functions}
-
-case "${1}" in
-       start)
-               boot_mesg "Retrying failed uevents, if any..."
-               # Re-trigger the failed uevents in hope they will succeed now
-               # If there are none, the "No such file or directory" error
-               # goes to /dev/null
-               for file in /dev/.udev/failed/*/uevent ; do
-                       echo "add" >"${file}"
-               done 2>/dev/null
-               
-               # Now wait for udevd to process the uevents we triggered
-               /bin/udevadm settle
-               evaluate_retval
-               ;;
-
-       *)
-               echo "Usage ${0} {start}"
-               exit 1
-               ;;
-esac
-
-# End $rc_base/init.d/udev_retry