add feature to mount a specific filer path to local directory

This commit is contained in:
Chris Lu
2018-07-14 21:09:21 -07:00
parent 3edfe1d28f
commit 7abfab8e77
3 changed files with 19 additions and 11 deletions

View File

@@ -73,7 +73,7 @@ func runMount(cmd *Command, args []string) bool {
filerAddress := fmt.Sprintf("%s:%d", hostnameAndPort[0], filerGrpcPort)
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
filerAddress, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
filerAddress, *mountOptions.filerMountRootPath, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
*mountOptions.chunkSizeLimitMB, *mountOptions.dataCenter))
if err != nil {
fuse.Unmount(*mountOptions.dir)