From 794b755f1d6b26e044627135d91f0d49388a36d5 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 20 Sep 2014 21:18:26 -0700 Subject: [PATCH] rename to Seaweed File System --- go/weed/benchmark.go | 2 +- go/weed/filer.go | 2 +- go/weed/mount_std.go | 2 +- go/weed/server.go | 2 +- go/weed/version.go | 4 ++-- go/weed/weed.go | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/go/weed/benchmark.go b/go/weed/benchmark.go index 27aebaef0..7e98fd177 100644 --- a/go/weed/benchmark.go +++ b/go/weed/benchmark.go @@ -98,7 +98,7 @@ func init() { } func runbenchmark(cmd *Command, args []string) bool { - fmt.Printf("This is Weed File System version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH) + fmt.Printf("This is Seaweed File System version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH) if *b.cpuprofile != "" { f, err := os.Create(*b.cpuprofile) if err != nil { diff --git a/go/weed/filer.go b/go/weed/filer.go index d7d028d50..da54a91fb 100644 --- a/go/weed/filer.go +++ b/go/weed/filer.go @@ -63,7 +63,7 @@ func runFiler(cmd *Command, args []string) bool { if nfs_err != nil { glog.Fatalf(nfs_err.Error()) } - glog.V(0).Infoln("Start Weed Filer", util.VERSION, "at port", strconv.Itoa(*f.port)) + glog.V(0).Infoln("Start Seaweed Filer", util.VERSION, "at port", strconv.Itoa(*f.port)) filerListener, e := util.NewListener( ":"+strconv.Itoa(*f.port), time.Duration(10)*time.Second, diff --git a/go/weed/mount_std.go b/go/weed/mount_std.go index 9376b3f2e..5b058fe89 100644 --- a/go/weed/mount_std.go +++ b/go/weed/mount_std.go @@ -15,7 +15,7 @@ import ( ) func runMount(cmd *Command, args []string) bool { - fmt.Printf("This is Weed File System version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH) + fmt.Printf("This is Seaweed File System version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH) if *mountOptions.dir == "" { fmt.Printf("Please specify the mount directory via \"-dir\"") return false diff --git a/go/weed/server.go b/go/weed/server.go index 8b0372159..66fbaa120 100644 --- a/go/weed/server.go +++ b/go/weed/server.go @@ -152,7 +152,7 @@ func runServer(cmd *Command, args []string) bool { if nfs_err != nil { glog.Fatalf(nfs_err.Error()) } - glog.V(0).Infoln("Start Weed Filer", util.VERSION, "at port", strconv.Itoa(*filerOptions.port)) + glog.V(0).Infoln("Start Seaweed Filer", util.VERSION, "at port", strconv.Itoa(*filerOptions.port)) filerListener, e := util.NewListener( ":"+strconv.Itoa(*filerOptions.port), time.Duration(10)*time.Second, diff --git a/go/weed/version.go b/go/weed/version.go index 2e0a59822..a7c24ea3b 100644 --- a/go/weed/version.go +++ b/go/weed/version.go @@ -9,8 +9,8 @@ import ( var cmdVersion = &Command{ Run: runVersion, UsageLine: "version", - Short: "print Weed File System version", - Long: `Version prints the Weed File System version`, + Short: "print Seaweed File System version", + Long: `Version prints the Seaweed File System version`, } func runVersion(cmd *Command, args []string) bool { diff --git a/go/weed/weed.go b/go/weed/weed.go index c739d8e93..03cf29179 100644 --- a/go/weed/weed.go +++ b/go/weed/weed.go @@ -90,7 +90,7 @@ func main() { } var usageTemplate = ` -Weed File System : store billions of files and serve them fast! +Seaweed File System : store billions of files and serve them fast! Usage: