Buildout recipe to copy data from one place to another.
Project description
Introduction
collective.recipe.rsync is a zc.buildout recipe that makes it easy to synchronize data between two locations, via the rsync program.
It was originally created to make it easier to synchronize Data.fs files between production and development environments. But you can use it to synchronize any tree of data e.g. ZODB blob files, and so on.
Currently, it assumes you have a UNIX-based operating system and that the rsync binary is in your path when you run buildout.
Usage
Add a section for it to your buildout.cfg file, e.g. database:
[buildout] extends = buildout.cfg parts += database [database] recipe = collective.recipe.rsync source = aclark@aclark.net:/srv/aclark/var/filestorage/Data.fs target = var/filestorage/Data.fs
Run buildout. You should see:
-------------------------------------------------------------------------------- Running rsync... rsync -av --partial --progress aclark@aclark.net:/srv/aclark/var/filestorage/Data.fs var/filestorage/Data.fs this may take a while!
Contact
Comments/questions/concerns? Email: aclark@aclark.net
Changelog
1.2 (2010-12-19)
Fix docs
Add new test harness
Clean up package
1.1 (2010-11-05)
Modified output to include rsync command line being executed
1.0 (2010-02-28)
Rename package from collective.recipe.rsync_datafs to collective.recipe.rsync
0.1 (2009-08-26)
Created recipe with ZopeSkel
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.