@cryptotaxi247 / kubo / commits / 154216d34

go-ipfs-config: Added fuse allow_other option

ipfs config Mounts.FuseAllowOther --bool true ipfs daemon --mount

Ho-Sheng Hsiao committed Mar 31, 2015 at 17:13 UTC 154216d34d48d00a4af1c70ea6f6d0ce5550225d
1 file changed +3 -2
config/mounts.go
+3 -2
@@ -2,6 +2,7 @@ package config
2
3 // Mounts stores the (string) mount points
4 type Mounts struct {
5 - IPFS string
6 - IPNS string
5 + IPFS string
6 + IPNS string
7 + FuseAllowOther bool
8 }