Your message dated Tue, 20 Sep 2011 16:09:00 +0200
with message-id <[email protected]>
and subject line Closing bug #416662
has caused the Debian Bug report #416662,
regarding ocfs-tools: oc2b init script exits when kernel does not have module
support
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
416662: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=416662
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: ocfs-tools
Severity: important
The o2cb init script assumes the kernel has module support. My kernel does
not. Once I commented out module-specific function calls, I was able to get it
to run and ocfs works
wonderfully.
73,78c73,78
< LOAD_ACTIONS=("load_module configfs"
< "mount_fs configfs "'$(configfs_path)'
< "load_module ocfs2_nodemanager"
< "load_module ocfs2_dlm"
< "load_module ocfs2_dlmfs"
< "mount_fs ocfs2_dlmfs /dlm")
---
> #LOAD_ACTIONS=("load_module configfs"
> # "mount_fs configfs "'$(configfs_path)'
> # "load_module ocfs2_nodemanager"
> # "load_module ocfs2_dlm"
> # "load_module ocfs2_dlmfs"
> # "mount_fs ocfs2_dlmfs /dlm")
79a80,81
> LOAD_ACTIONS=( "mount_fs configfs "'$(configfs_path)'
> "mount_fs ocfs2_dlmfs /dlm")
274c276,277
< modprobe -s "$MODNAME"
---
> true
> #modprobe -s "$MODNAME"
403c406,407
< modprobe -rs "$MODNAME"
---
> true
> #modprobe -rs "$MODNAME"
419a424
> return 2
-- System Information:
Debian Release: 4.0
APT prefers testing
APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.19.2-grsec-xen-amd64-dom0-tcg
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
--- End Message ---
--- Begin Message ---
The ocfs2-tools init script are meant to be usable for a generic Debian
installation. Disabling module loading would break the default setup.
Jeremy
--- End Message ---