From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabio M. Di Nitto Date: Thu, 07 Apr 2011 18:59:06 +0200 Subject: [Cluster-devel] [PATCH] ras / RHEL5: Trim trailing slash for nfs clients In-Reply-To: <1302183909-17267-1-git-send-email-lhh@redhat.com> References: <1302183909-17267-1-git-send-email-lhh@redhat.com> Message-ID: <4D9DED5A.20908@redhat.com> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit ACK On 04/07/2011 03:45 PM, Lon Hohberger wrote: > The exportfs command and/or rpc.mountd trim the trailing slashes > when reporting things in /var/lib/nfs/etab, causing mismatch problems > for the nfsclient resource agent. > > Resolves: rhbz#592624 > > Signed-off-by: Lon Hohberger > --- > rgmanager/src/resources/nfsclient.sh | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/rgmanager/src/resources/nfsclient.sh b/rgmanager/src/resources/nfsclient.sh > index 2aeee78..138370d 100755 > --- a/rgmanager/src/resources/nfsclient.sh > +++ b/rgmanager/src/resources/nfsclient.sh > @@ -266,6 +266,8 @@ verify_path() > return $OCF_ERR_ARGS > fi > > + OCF_RESKEY_path="${OCF_RESKEY_path%/}" > + > [ -d "$OCF_RESKEY_path" ] && return 0 > > ocf_log err "$OCF_RESKEY_path is not a directory"