Imported Upstream version 1.5.1

This commit is contained in:
Mario Fetka
2020-09-22 02:25:22 +02:00
commit 434d6067d9
2103 changed files with 928962 additions and 0 deletions

12
bin/umount.xtreemfs Executable file
View 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 $?