summaryrefslogtreecommitdiff
path: root/vendor/rsync_command/README.md
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2016-07-01 14:49:27 -0700
committerelijah <elijah@riseup.net>2016-07-01 14:49:27 -0700
commit174dbf380fe1b0962a9e173caa6dd0a0f76a14e1 (patch)
treed2f1414652d2c0fbd1003347c2abf2be1ffff473 /vendor/rsync_command/README.md
parent2d277c7d2aa3ddfbe3c2c65f68d7290930934b70 (diff)
parentf9284ff22da6eec685782dbc9aa4a4ded0efec29 (diff)
Merge branch 'feature/newcli' into develop
Diffstat (limited to 'vendor/rsync_command/README.md')
-rw-r--r--vendor/rsync_command/README.md12
1 files changed, 7 insertions, 5 deletions
diff --git a/vendor/rsync_command/README.md b/vendor/rsync_command/README.md
index 4b53a5c..5e44845 100644
--- a/vendor/rsync_command/README.md
+++ b/vendor/rsync_command/README.md
@@ -11,13 +11,15 @@ Installation
Usage
------------------------------------
- rsync = RsyncCommand.new(:logger => logger, :ssh => {:auth_methods => 'publickey'}, :flags => '-a')
- source = '/source/path'
+ rsync = RsyncCommand.new(:ssh => {:auth_methods => 'publickey'}, :flags => '-a')
servers = ['red', 'green', 'blue']
- rsync.asynchronously(servers) do |server|
- dest = {:user => 'root', :host => server, :path => '/dest/path'}
- rsync.exec(source, dest)
+ rsync.asynchronously(servers) do |sync, server|
+ sync.user = 'root'
+ sync.host = server
+ sync.source = '/from'
+ sync.dest = '/to'
+ sync.exec
end
if rsync.failed?