diff options
author | Jakob Unterwurzacher | 2016-05-16 23:59:26 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-05-18 19:30:05 +0200 |
commit | e7f78135b3092bbd2479beac5b7da077cb5d1497 (patch) | |
tree | 3818fa7936b88ec4006914683153a4d175c1a952 /Documentation | |
parent | 5d1d5645121b3a73bcb11c608737341210232932 (diff) |
Add "-allow_other" command-line option
As requested in https://github.com/rfjakob/gocryptfs/issues/26 ,
this adds the option to allow other users to access the filesystem.
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/MANPAGE.md | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Documentation/MANPAGE.md b/Documentation/MANPAGE.md index 411a1d5..0ddd772 100644 --- a/Documentation/MANPAGE.md +++ b/Documentation/MANPAGE.md @@ -1,6 +1,6 @@ % GOCRYPTFS(1) % github.com/rfjakob -% Nov 2015 +% May 2016 NAME ==== @@ -30,6 +30,13 @@ DESCRIPTION Options: +**-allow_other** +: By default, the Linux kernel prevents any other user (even root) to +access a mounted FUSE filesystem. Settings this option allows access for +other users, subject to file permission checking. Only works if +user_allow_other is set in /etc/fuse.conf. This option is equivalent to +"allow_other" plus "default_permissions" described in fuse(8). + **-config string** : Use specified config file instead of CIPHERDIR/gocryptfs.conf @@ -136,3 +143,7 @@ mkdir /tmp/g1 /tmp/g2 gocryptfs -init /tmp/g1 gocryptfs /tmp/g1 /tmp/g2 + +SEE ALSO +======== +fuse(8) |