[kernel] r10433 - in dists/trunk/redhat-cluster/redhat-cluster/debian: . patches
Frederik Schüler
fs at alioth.debian.org
Fri Feb 8 10:31:55 UTC 2008
Author: fs
Date: Fri Feb 8 10:31:55 2008
New Revision: 10433
Log:
Fix bashism in cman init script. Closes: #464634
Fix redhat-cluster-source FTBFS. Closes: #464117
Added:
dists/trunk/redhat-cluster/redhat-cluster/debian/patches/
Modified:
dists/trunk/redhat-cluster/redhat-cluster/debian/changelog
dists/trunk/redhat-cluster/redhat-cluster/debian/cman.init
dists/trunk/redhat-cluster/redhat-cluster/debian/redhat-cluster-source.Makefile
Modified: dists/trunk/redhat-cluster/redhat-cluster/debian/changelog
==============================================================================
--- dists/trunk/redhat-cluster/redhat-cluster/debian/changelog (original)
+++ dists/trunk/redhat-cluster/redhat-cluster/debian/changelog Fri Feb 8 10:31:55 2008
@@ -1,3 +1,10 @@
+redhat-cluster (2.20080208-1) unstable; urgency=low
+
+ * Fix bashism in cman init script. Closes: #464634
+ * Fix redhat-cluster-source FTBFS. Closes: #464117
+
+ -- Frederik Schüler <fs at debian.org> Fri, 08 Feb 2008 11:30:50 +0100
+
redhat-cluster (2.20080205-1) unstable; urgency=low
* New upstream snapshot.
Modified: dists/trunk/redhat-cluster/redhat-cluster/debian/cman.init
==============================================================================
--- dists/trunk/redhat-cluster/redhat-cluster/debian/cman.init (original)
+++ dists/trunk/redhat-cluster/redhat-cluster/debian/cman.init Fri Feb 8 10:31:55 2008
@@ -125,7 +125,7 @@
echo -n " Leaving fence domain:"
fence_tool -w leave &
for sec in $(seq 1 10); do
- if pidof fence_tool &> /dev/null; then
+ if pidof fence_tool > /dev/null 2>&1; then
if [ "$sec" = 10 ]; then
kill $(pidof fence_tool) > /dev/null 2>&1
else
Modified: dists/trunk/redhat-cluster/redhat-cluster/debian/redhat-cluster-source.Makefile
==============================================================================
--- dists/trunk/redhat-cluster/redhat-cluster/debian/redhat-cluster-source.Makefile (original)
+++ dists/trunk/redhat-cluster/redhat-cluster/debian/redhat-cluster-source.Makefile Fri Feb 8 10:31:55 2008
@@ -1,5 +1,5 @@
#! /usr/bin/make -f
-USING_KBUILD=1
+export USING_KBUILD=1
obj-m = gfs/ gnbd/
More information about the Kernel-svn-changes
mailing list