From d3b91323f003b8f1b21a02b19215118739349177 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 18 Apr 2010 18:03:22 +0200 Subject: [PATCH] Modify modules initscript to softly fail module loads. This won't be a critical error if a module is not loadable. --- src/initscripts/init.d/modules | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/initscripts/init.d/modules b/src/initscripts/init.d/modules index 6be87f46d1..a51694aa47 100644 --- a/src/initscripts/init.d/modules +++ b/src/initscripts/init.d/modules @@ -54,14 +54,12 @@ case "${1}" in # Attempt to load the module, making # sure to pass any arguments provided. - modprobe ${module} ${args} 2>&1 > /dev/null + modprobe ${module} ${args} &>/dev/null # Print the module name if successful, # otherwise take note. if [ ${?} -eq 0 ]; then boot_mesg -n " ${module}" ${NORMAL} - else - failedmod="${failedmod} ${module}" fi done @@ -70,13 +68,6 @@ case "${1}" in # modules on the correct line. echo_ok - # Print a failure message with a list of any - # modules that may have failed to load. - if [ "${failedmod}" ]; then - boot_mesg "Failed to load modules:${failedmod}" ${FAILURE} - echo_failure - fi - exec 0>&9 9>&- fi -- 2.39.2