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 Project branch, RHEL5, updated. cmirror_1_1_15-77-ga228955


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cluster Project".

http://sources.redhat.com/git/gitweb.cgi?p=cluster.git;a=commitdiff;h=a228955f193c0aeb2b845871d82c8275634c1b40

The branch, RHEL5 has been updated
       via  a228955f193c0aeb2b845871d82c8275634c1b40 (commit)
      from  2c42fa7247c3dab78473c5019b03648b40a77dae (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a228955f193c0aeb2b845871d82c8275634c1b40
Author: Jonathan Brassow <jbrassow@redhat.com>
Date:   Thu May 15 15:09:47 2008 -0500

    rgmanager/lvm.sh:  Fix bug 446260 (HA LVM doesn't work on IA64)
    
    switch:
     $(find /boot/*.img -newer /etc/lvm/lvm.conf)
    to:
     $(find /boot -name *.img -newer /etc/lvm/lvm.conf)
    
    Could be better still if there was a way of knowing which
    initrd we used when booting...

-----------------------------------------------------------------------

Summary of changes:
 rgmanager/src/resources/lvm.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/rgmanager/src/resources/lvm.sh b/rgmanager/src/resources/lvm.sh
index 4c93249..ffb0b21 100755
--- a/rgmanager/src/resources/lvm.sh
+++ b/rgmanager/src/resources/lvm.sh
@@ -91,7 +91,7 @@ function ha_lvm_proper_setup_check
 	# the control of rgmanager
 	##
 	# Fixme: we might be able to perform a better check...
-	if [ "$(find /boot/*.img -newer /etc/lvm/lvm.conf)" == "" ]; then
+	if [ "$(find /boot -name *.img -newer /etc/lvm/lvm.conf)" == "" ]; then
 		ocf_log err "HA LVM:  Improper setup detected"
 		ocf_log err "- initrd image needs to be newer than lvm.conf"
 		return $OCF_ERR_GENERIC


hooks/post-receive
--
Cluster Project


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