diff options
author | Krishnan Parthasarathi <kparthas@redhat.com> | 2013-02-02 00:14:28 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2013-02-03 12:15:33 -0800 |
commit | 67d0e72b16104911fef1cebb0b7a1b24d683e899 (patch) | |
tree | af57f23737a26047a22fb004589f55f69d51ef2e /xlators/mount | |
parent | 80d08f13b0fd6ee0d10f0569165982913339607d (diff) |
mount.glusterfs: Fixed regexp matcher for existing mount points
Change-Id: I58d237a3d2f4caa7f3865c2e4899c472f7457450
BUG: 906887
Signed-off-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-on: http://review.gluster.org/4457
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Amar Tumballi <amarts@redhat.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'xlators/mount')
-rwxr-xr-x | xlators/mount/fuse/utils/mount.glusterfs.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index 0d92bfbd595..f08c90e6b8d 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -412,7 +412,7 @@ main () } # Simple check to avoid multiple identical mounts - if grep -q " ${mount_point}.*fuse" $mounttab; then + if grep -q "[[:space:]+]${mount_point}[[:space:]+]fuse" $mounttab; then echo -n "$0: according to mtab, GlusterFS is already mounted on " echo "$mount_point" exit 0; |