From 49ee8033e98e0abbcdcaa3dad3585eeb80d8ba6b Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 26 Jun 2006 23:03:43 +0000 Subject: [PATCH] Branch b1_5 b=10670 if MODPROBE is set use kernel modules instead of local build modules (and thus use modprobe.conf as well) --- lustre/tests/test-framework.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lustre/tests/test-framework.sh b/lustre/tests/test-framework.sh index 9e272e5..9dbcb140 100644 --- a/lustre/tests/test-framework.sh +++ b/lustre/tests/test-framework.sh @@ -81,6 +81,10 @@ load_module() { } load_modules() { + if [ -n "$MODPROBE" ]; then + # use modprobe + return 0 + fi if [ "$HAVE_MODULES" = true ]; then return 0 fi -- 1.8.3.1