diff options
author | Amar Tumballi <amar@gluster.com> | 2009-06-22 19:26:06 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-06-23 12:33:46 -0700 |
commit | 1bd3a412d01c2d0cbbcf91e7983e2d4c9c8bbec4 (patch) | |
tree | 41a85ce585a9a461fecb7272fbb829970d923966 /xlators/mount | |
parent | e7b8470623ff647a6fe2740b555bf1ce2dae7d21 (diff) |
mount.glusterfs.in correctness in case of duplicate mount
mount.<fstype> script/program should return success in case when it finds
duplicate mounts. It was returning failure earlier. Someversions of
automount programs had issues with this behavior.
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
Diffstat (limited to 'xlators/mount')
-rwxr-xr-x | xlators/mount/fuse/utils/mount.glusterfs.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mount/fuse/utils/mount.glusterfs.in b/xlators/mount/fuse/utils/mount.glusterfs.in index 2b43f834b..cd371c8ce 100755 --- a/xlators/mount/fuse/utils/mount.glusterfs.in +++ b/xlators/mount/fuse/utils/mount.glusterfs.in @@ -154,9 +154,9 @@ function main () mount_point="$2"; # Simple check to avoid multiple identical mounts - if grep -q "glusterfs.* $mount_point fuse" /etc/mtab; then + if grep -q " $mount_point fuse" /etc/mtab; then echo "$0: according to mtab, GlusterFS is already mounted on $mount_point" - exit 1 + exit 0 fi fs_options=$(echo "$fs_options,$new_fs_options"); |