diff options
Diffstat (limited to 'weed/command')
| -rw-r--r-- | weed/command/filer_replication.go | 2 | ||||
| -rw-r--r-- | weed/command/scaffold.go | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go index 8d5c9d8cc..1c137bb53 100644 --- a/weed/command/filer_replication.go +++ b/weed/command/filer_replication.go @@ -6,6 +6,8 @@ import ( "github.com/chrislusf/seaweedfs/weed/glog" "github.com/chrislusf/seaweedfs/weed/replication" "github.com/chrislusf/seaweedfs/weed/replication/sink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/azuresink" + _ "github.com/chrislusf/seaweedfs/weed/replication/sink/b2sink" _ "github.com/chrislusf/seaweedfs/weed/replication/sink/filersink" _ "github.com/chrislusf/seaweedfs/weed/replication/sink/gcssink" _ "github.com/chrislusf/seaweedfs/weed/replication/sink/s3sink" diff --git a/weed/command/scaffold.go b/weed/command/scaffold.go index 2e7aa0cb6..95ddbd57c 100644 --- a/weed/command/scaffold.go +++ b/weed/command/scaffold.go @@ -195,12 +195,20 @@ bucket = "your_bucket_seaweedfs" # an existing bucket directory = "/" # destination directory [sink.azure] -# experimental +# experimental, let me know if it works enabled = false account_name = "" account_key = "" container = "mycontainer" # an existing container directory = "" # destination directory (do not prefix or suffix with "/") +[sink.backblaze] +# experimental, let me know if it works +enabled = false +account_id = "" +account_key = "" +bucket = "mybucket" # an existing bucket +directory = "" # destination directory (do not prefix or suffix with "/") + ` ) |
