Merge pull request #809 from chrislusf/switching_to_seaweedfs_fuse

switching_to_seaweedfs_fuse
This commit is contained in:
Chris Lu 2018-12-29 12:15:11 -08:00 committed by GitHub
commit 259a2c111e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 17 additions and 17 deletions

View file

@ -51,7 +51,7 @@ var cmdMount = &Command{
2) have a "weed filer" running 2) have a "weed filer" running
These 2 requirements can be achieved with one command "weed server -filer=true" These 2 requirements can be achieved with one command "weed server -filer=true"
This uses bazil.org/fuse, which enables writing FUSE file systems on This uses github.com/seaweedfs/fuse, which enables writing FUSE file systems on
Linux, and OS X. Linux, and OS X.
On OS X, it requires OSXFUSE (http://osxfuse.github.com/). On OS X, it requires OSXFUSE (http://osxfuse.github.com/).

View file

@ -11,8 +11,8 @@ import (
"strings" "strings"
"time" "time"
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"github.com/chrislusf/seaweedfs/weed/filesys" "github.com/chrislusf/seaweedfs/weed/filesys"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util" "github.com/chrislusf/seaweedfs/weed/util"

View file

@ -7,8 +7,8 @@ import (
"path/filepath" "path/filepath"
"time" "time"
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"github.com/chrislusf/seaweedfs/weed/filer2" "github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb" "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"

View file

@ -6,8 +6,8 @@ import (
"syscall" "syscall"
"time" "time"
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb" "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
) )

View file

@ -1,8 +1,8 @@
package filesys package filesys
import ( import (
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"context" "context"
"math" "math"
"path/filepath" "path/filepath"

View file

@ -1,8 +1,8 @@
package filesys package filesys
import ( import (
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"context" "context"
"github.com/chrislusf/seaweedfs/weed/filer2" "github.com/chrislusf/seaweedfs/weed/filer2"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"

View file

@ -1,8 +1,8 @@
package filesys package filesys
import ( import (
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"context" "context"
"fmt" "fmt"
"github.com/chrislusf/seaweedfs/weed/filer2" "github.com/chrislusf/seaweedfs/weed/filer2"

View file

@ -8,8 +8,8 @@ import (
"sync" "sync"
"time" "time"
"bazil.org/fuse" "github.com/seaweedfs/fuse"
"bazil.org/fuse/fs" "github.com/seaweedfs/fuse/fs"
"github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb" "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util" "github.com/chrislusf/seaweedfs/weed/util"

2
weed/glide.lock generated
View file

@ -1,7 +1,7 @@
hash: 2e3a065472829938d25e879451b6d1aa43e55270e1166a9c044803ef8a3b9eb1 hash: 2e3a065472829938d25e879451b6d1aa43e55270e1166a9c044803ef8a3b9eb1
updated: 2018-06-28T22:01:35.910567-07:00 updated: 2018-06-28T22:01:35.910567-07:00
imports: imports:
- name: bazil.org/fuse - name: github.com/seaweedfs/fuse
version: 65cc252bf6691cb3c7014bcb2c8dc29de91e3a7e version: 65cc252bf6691cb3c7014bcb2c8dc29de91e3a7e
subpackages: subpackages:
- fs - fs

View file

@ -1,6 +1,6 @@
package: github.com/chrislusf/seaweedfs/weed package: github.com/chrislusf/seaweedfs/weed
import: import:
- package: bazil.org/fuse - package: github.com/seaweedfs/fuse
subpackages: subpackages:
- fs - fs
- package: github.com/boltdb/bolt - package: github.com/boltdb/bolt