Imported Upstream version 1.5.1
This commit is contained in:
12
bin/umount.xtreemfs
Executable file
12
bin/umount.xtreemfs
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
# a simple wrapper around fusermount -u, now passes all args to fusermount
|
||||
|
||||
if [ "x$1" == "x" -o "$1" == "--help" -o "$1" == "-h" ]
|
||||
then
|
||||
echo "usage: umount.xtreemfs <mount_point>"
|
||||
echo ""
|
||||
exit 1
|
||||
fi
|
||||
|
||||
fusermount -u $@
|
||||
exit $?
|
||||
Reference in New Issue
Block a user