diff options
author | Jakob Unterwurzacher | 2017-02-15 23:02:01 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-02-15 23:02:01 +0100 |
commit | ce2e610428c940c2bd5ca1790e7375117b1f6015 (patch) | |
tree | 08563c5e36b8d285390f897cd122e7e1aa8f6fc4 /benchmark-reverse.bash | |
parent | 6be7808992a1d9562b113b13831cd6d6a40114d6 (diff) |
OSX compat: replace fusermount calls with fuse-unmount.bash
Mac OS X does not have fusermount and uses umount instead.
The fuse-unmount.bash calls the appropriate command.
Diffstat (limited to 'benchmark-reverse.bash')
-rwxr-xr-x | benchmark-reverse.bash | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/benchmark-reverse.bash b/benchmark-reverse.bash index e5f375d..2cb1e94 100755 --- a/benchmark-reverse.bash +++ b/benchmark-reverse.bash @@ -4,6 +4,7 @@ cd "$(dirname "$0")" MYNAME=$(basename "$0") +source tests/fuse-unmount.bash # Download /tmp/linux-3.0.tar.gz ./tests/dl-linux-tarball.bash @@ -29,7 +30,7 @@ gocryptfs -q -init -reverse -extpass="echo test" -scryptn=10 $PLAIN MNT=$(mktemp -d /tmp/linux-3.0.reverse.mnt.XXX) # Cleanup trap -trap "rm -f $PLAIN/.gocryptfs.reverse.conf ; fusermount -u -z $MNT ; rmdir $MNT" EXIT +trap "rm -f $PLAIN/.gocryptfs.reverse.conf ; fuse-unmount -z $MNT ; rmdir $MNT" EXIT # Mount gocryptfs -q -reverse -extpass="echo test" $PLAIN $MNT |