cluster: RHEL59 - rgmanager: Don't use the resource name in tmp file names

Ryan McCabe rmccabe at fedoraproject.org
Tue Sep 18 14:14:31 UTC 2012


Gitweb:        http://git.fedorahosted.org/git/?p=cluster.git;a=commitdiff;h=befffad0d0ad2554071c02f877033a49d47629b4
Commit:        befffad0d0ad2554071c02f877033a49d47629b4
Parent:        6342b59f089475e679bbbd440ef8ae6277d173d8
Author:        Ryan McCabe <rmccabe at redhat.com>
AuthorDate:    Tue Sep 18 09:52:59 2012 -0400
Committer:     Ryan McCabe <rmccabe at redhat.com>
CommitterDate: Tue Sep 18 10:14:20 2012 -0400

rgmanager: Don't use the resource name in tmp file names

Patch from  John Ruemker <jruemker at redhat.com>

This patch fixes a regression in the fs resource agent that caused
mktemp to fail to create a tmp file during status operations when
the resource name contains the '/' character.

Resolves: rhbz#858022

Acked-by: Fabio M. Di Nitto <fdinitto at redhat.com>
Signed-off-by: Ryan McCabe <rmccabe at redhat.com>
---
 rgmanager/src/resources/fs.sh |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/rgmanager/src/resources/fs.sh b/rgmanager/src/resources/fs.sh
index 147f246..e55e77f 100755
--- a/rgmanager/src/resources/fs.sh
+++ b/rgmanager/src/resources/fs.sh
@@ -560,7 +560,7 @@ mountInUse () {
 	dev=$1
 	mp=$2
 
-	typeset proc_mounts=$(mktemp /tmp/fs-$OCF_RESKEY_name.proc.mounts.XXXXXX)
+	typeset proc_mounts=$(mktemp /tmp/fs.proc.mounts.XXXXXX)
 	cat /proc/mounts > $proc_mounts
 	while read tmp_dev tmp_mp junka junkb junkc junkd; do
 		if [ -n "$tmp_dev" -a "$tmp_dev" = "$dev" ]; then
@@ -612,7 +612,7 @@ isMounted () {
 
 	ret=$NO
 
-	typeset proc_mounts=$(mktemp /tmp/fs-$OCF_RESKEY_name.proc.mounts.XXXXXX)
+	typeset proc_mounts=$(mktemp /tmp/fs.proc.mounts.XXXXXX)
 	cat /proc/mounts > $proc_mounts
 	while read tmp_dev tmp_mp junk_a junk_b junk_c junk_d
 	do
@@ -970,7 +970,7 @@ Unknown file system type '$fstype' for device $dev.  Assuming fsck is required."
 	#
 	if [ -n "$fsck_needed" ] || [ "${OCF_RESKEY_force_fsck}" = "yes" ] ||\
 	   [ "${OCF_RESKEY_force_fsck}" = "1" ]; then
-		typeset fsck_log=$(mktemp /tmp/fs-$OCF_RESKEY_name.fsck.log.XXXXXX)
+		typeset fsck_log=$(mktemp /tmp/fs.fsck.log.XXXXXX)
 		ocf_log debug "Running fsck on $dev"
 		fsck -p $dev >> $fsck_log 2>&1
 		ret_val=$?


More information about the cluster-commits mailing list