A deployer that deploys a site using rsync.
The configuration has should include a `:dst` value, a string containing the destination to where rsync should upload its data. It will likely be in `host:path` format. It should not end with a slash. For example, `"example.com:/var/www/sites/mysite/html"`.
@example A deployment configuration with public and staging configurations
deploy: public: kind: rsync dst: "ectype:sites/stoneship/public" staging: kind: rsync dst: "ectype:sites/stoneship-staging/public" options: [ "-glpPrtvz" ]
Default rsync options
@see Nanoc::Extra::Deployer#run
# File lib/nanoc/extra/deployers/rsync.rb, line 32 def run require 'systemu' # Get params src = self.source_path + '/' dst = self.config[:dst] options = self.config[:options] || DEFAULT_OPTIONS # Validate raise 'No dst found in deployment configuration' if dst.nil? raise 'dst requires no trailing slash' if dst[-1,1] == '/' # Run if dry_run warn 'Performing a dry-run; no actions will actually be performed' run_shell_cmd([ 'echo', 'rsync', options, src, dst ].flatten) else run_shell_cmd([ 'rsync', options, src, dst ].flatten) end end
Generated with the Darkfish Rdoc Generator 2.