Sha256: fa16d23efc37e27b2f362e4bbd861cf5e2ee71ab91c9ace9c4658301edeb0751
Contents?: true
Size: 728 Bytes
Versions: 11
Compression:
Stored size: 728 Bytes
Contents
## # RSync::Pull [Syncer] # # The default `mode` is :ssh, which does not require the use # of an rsync daemon on the remote. If you wish to connect # directly to an rsync daemon, or via SSH using daemon features, # :rsync_daemon and :ssh_daemon modes are also available. # See the documentation on the Wiki for details. # https://github.com/meskyanichi/backup/wiki/Syncers # sync_with RSync::Pull do |rsync| rsync.mode = :ssh rsync.host = "123.45.678.90" rsync.path = "~/backups" rsync.mirror = true rsync.compress = true rsync.directories do |directory| directory.add "/var/apps/my_app/public/uploads" directory.add "/var/apps/my_app/logs" end end
Version data entries
11 entries across 11 versions & 1 rubygems