mirror of
https://github.com/vgough/encfs.git
synced 2024-11-22 16:03:34 +01:00
4fc836f032
git-svn-id: http://encfs.googlecode.com/svn/trunk@2 db9cf616-1c43-0410-9cb8-a902689de0d6
68 lines
1.4 KiB
Bash
68 lines
1.4 KiB
Bash
#!/bin/sh
|
|
|
|
# This script mounts an encfs filesystem, starts a shell in the mounted
|
|
# directory, and then unmounts the filesystem when the shell exits.
|
|
# This is an equivalent of the cfssh utility for cfs.
|
|
# Contributed by David Rosenstrauch.
|
|
|
|
canonicalize() {
|
|
cd "$1"
|
|
pwd
|
|
}
|
|
|
|
|
|
if [ -z "$1" -o "$1" = "-h" ]; then
|
|
echo Usage: encfssh encrypted_directory [unencrypted-directory [-p]]
|
|
echo " -p mount the unencrypted directory as public"
|
|
exit 1
|
|
fi
|
|
|
|
enc_dir=$1
|
|
unenc_dir_given=false
|
|
mount_public=false
|
|
if [ ! -z "$2" ]; then
|
|
unenc_dir_given=true
|
|
unenc_dir=$2
|
|
for arg in "$@" ; do
|
|
if [ "$arg" = "-p" ]; then
|
|
mount_public=true
|
|
fi
|
|
done
|
|
else
|
|
unenc_dir=.$RANDOM.$RANDOM
|
|
fi
|
|
|
|
if [ ! -d "$enc_dir" ]; then
|
|
mkdir $enc_dir
|
|
fi
|
|
if [ ! -d "$unenc_dir" ]; then
|
|
mkdir $unenc_dir
|
|
fi
|
|
|
|
enc_dir=$(canonicalize "$enc_dir")
|
|
unenc_dir=$(canonicalize "$unenc_dir")
|
|
|
|
options=""
|
|
if $unenc_dir_given; then
|
|
if $mount_public; then
|
|
options="-- -o allow_other"
|
|
fi
|
|
fi
|
|
|
|
# Attach the directory and change into it
|
|
if encfs $enc_dir $unenc_dir $options; then :; else
|
|
echo "encfs failed"
|
|
rmdir $unenc_dir
|
|
exit 1
|
|
fi
|
|
if ! $unenc_dir_given; then
|
|
chmod 700 $unenc_dir
|
|
fi
|
|
echo "Directory is $unenc_dir"
|
|
orig_dir=$(pwd)
|
|
cd $unenc_dir
|
|
|
|
# Set the shell up
|
|
exec /bin/sh -c "$SHELL ; cd $orig_dir ; fusermount -u $unenc_dir ; if ! $unenc_dir_given; then rmdir $unenc_dir; fi"
|
|
|