diff options
author | Ryan Kavanagh <ryanakca@kubuntu.org> | 2011-10-22 14:12:46 -0400 |
---|---|---|
committer | Ryan Kavanagh <ryanakca@kubuntu.org> | 2011-10-22 14:14:38 -0400 |
commit | 09d34ba53190adec418489c722f75b3fa495512b (patch) | |
tree | df1a6dc2568e31f82759bd5d654df3ac4e687ae7 /bin/gpg-mounter | |
parent | Forgot redshift substs (diff) |
Enable mounting an a non-empty .gnupg
Diffstat (limited to '')
-rwxr-xr-x | bin/gpg-mounter | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gpg-mounter b/bin/gpg-mounter index 89fc97f..b1a9c15 100755 --- a/bin/gpg-mounter +++ b/bin/gpg-mounter @@ -26,7 +26,7 @@ mounted=`mount | grep ${decrypted_dir}` if [ ! -n "${mounted}" ] then - encfs ${crypted_dir} ${decrypted_dir} + encfs -o nonempty ${crypted_dir} ${decrypted_dir} fi exit $? |