This is the mail archive of the cluster-cvs@sourceware.org mailing list for the cluster.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

cluster: master - cman: loading lock_dlm module should be optional ininitscript


Gitweb:        http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=7c09f22d0e5569b0f276663e00738464440d63ee
Commit:        7c09f22d0e5569b0f276663e00738464440d63ee
Parent:        3bc2ce2997af4c210013d780a45679051c82601d
Author:        Steven Whitehouse <swhiteho@redhat.com>
AuthorDate:    Mon Dec 8 14:46:57 2008 +0000
Committer:     Steven Whitehouse <swhiteho@redhat.com>
CommitterDate: Mon Dec 8 14:46:57 2008 +0000

cman: loading lock_dlm module should be optional in initscript

Loading the lock_dlm module should be optional since it is optional
in the kernel configuration, and in the future we intend to merge
it into gfs2 itself.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
---
 cman/init.d/cman.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in
index 1012681..7d71e1b 100644
--- a/cman/init.d/cman.in
+++ b/cman/init.d/cman.in
@@ -148,7 +148,7 @@ load_modules()
 {
     errmsg=$( /sbin/modprobe configfs 2>&1 ) || return 1
     errmsg=$( /sbin/modprobe dlm 2>&1 ) || return 1
-    errmsg=$( /sbin/modprobe lock_dlm 2>&1 ) || return 1
+    errmsg=$( /sbin/modprobe lock_dlm 2>&1 ) || true
     return 0
 }
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]