From c02dd5f8f80f24fda39507145e89b4bf3d0aa947 Mon Sep 17 00:00:00 2001 From: Muhamad Azmy Date: Mon, 4 Nov 2019 16:13:13 +0100 Subject: [PATCH] 0-fs has a pontential fix for the perm problem Fixes #330 Fixes #315 --- pkg/flist/flist.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/flist/flist.go b/pkg/flist/flist.go index 98bc40e3f..7b01f63b2 100644 --- a/pkg/flist/flist.go +++ b/pkg/flist/flist.go @@ -162,11 +162,6 @@ func (f *flistModule) Mount(url, storage string) (string, error) { return "", err } - // workaround until https://github.com/threefoldtech/zos/issues/330 is fixed - if err := os.Chmod(mountpoint, 0755); err != nil { - return "", err - } - return mountpoint, nil }