go-ipfs-config: Added fuse allow_other option

ipfs config Mounts.FuseAllowOther --bool true
    ipfs daemon --mount
This commit is contained in:
Ho-Sheng Hsiao 2015-03-31 17:13:28 -07:00
parent 25c4d28de9
commit 154216d34d

View File

@ -2,6 +2,7 @@ package config
// Mounts stores the (string) mount points
type Mounts struct {
IPFS string
IPNS string
IPFS string
IPNS string
FuseAllowOther bool
}