aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_remote_cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/shell/command_remote_cache.go')
-rw-r--r--weed/shell/command_remote_cache.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/weed/shell/command_remote_cache.go b/weed/shell/command_remote_cache.go
index 8980fc82e..561484302 100644
--- a/weed/shell/command_remote_cache.go
+++ b/weed/shell/command_remote_cache.go
@@ -27,12 +27,12 @@ func (c *commandRemoteCache) Help() string {
# assume a remote storage is configured to name "cloud1"
remote.configure -name=cloud1 -type=s3 -access_key=xxx -secret_key=yyy
# mount and pull one bucket
- remote.mount -dir=xxx -remote=cloud1/bucket
+ remote.mount -dir=/xxx -remote=cloud1/bucket
# after mount, run one of these command to cache the content of the files
- remote.cache -dir=xxx
- remote.cache -dir=xxx/some/sub/dir
- remote.cache -dir=xxx/some/sub/dir -include=*.pdf
+ remote.cache -dir=/xxx
+ remote.cache -dir=/xxx/some/sub/dir
+ remote.cache -dir=/xxx/some/sub/dir -include=*.pdf
This is designed to run regularly. So you can add it to some cronjob.
If a file is already synchronized with the remote copy, the file will be skipped to avoid unnecessary copy.