From 154216d34d48d00a4af1c70ea6f6d0ce5550225d Mon Sep 17 00:00:00 2001 From: Ho-Sheng Hsiao Date: Tue, 31 Mar 2015 17:13:28 -0700 Subject: [PATCH] go-ipfs-config: Added fuse allow_other option ipfs config Mounts.FuseAllowOther --bool true ipfs daemon --mount --- config/mounts.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/mounts.go b/config/mounts.go index a0f420059..b23d30b2e 100644 --- a/config/mounts.go +++ b/config/mounts.go @@ -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 }