fuel-library/deployment/puppet/rsync
Jenkins 15e5fd3c44 Merge "Sync puppet module rsync to v0.3.0 from upstream" 2014-10-13 18:40:58 +00:00
..
files Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
manifests Merge "Sync puppet module rsync to v0.3.0 from upstream" 2014-10-13 18:40:58 +00:00
spec Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
templates Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
tests Initial commit 2012-09-07 17:38:58 -07:00
.fixtures.yml Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
.gitignore Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
.travis.yml Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
CHANGELOG Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
Gemfile Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
LICENSE Initial commit 2012-09-07 17:38:58 -07:00
README.markdown Sync puppet module rsync to v0.3.0 from upstream 2014-06-26 20:08:21 +04:00
Rakefile Initial commit 2012-09-07 17:38:58 -07:00

README.markdown

puppetlabs-rsync

puppetlabs-rsync manages rsync clients, repositories, and servers as well as providing defines to easily grab data via rsync.

Definition: rsync::get

get files via rsync

Parameters:

$source     - source to copy from
$path       - path to copy to, defaults to $name
$user       - username on remote system
$purge      - if set, rsync will use '--delete'
$recursive  - if set, rsync will use '-r'
$links      - if set, rsync will use '--links'
$hardlinks  - if set, rsync will use '--hard-links'
$copylinks  - if set, rsync will use '--copy-links'
$times      - if set, rsycn will use '--times'
$include    - string to be included
$exclude    - string to be excluded
$keyfile    - ssh key used to connect to remote host
$timeout    - timeout in seconds, defaults to 900
$execuser   - user to run the command (passed to exec)

Actions:

get files via rsync

Requires:

$source must be set

Sample Usage:

# get file 'foo' via rsync
rsync::get { '/foo':
  source  => "rsync://${rsyncServer}/repo/foo/",
  require => File['/foo'],
}

Definition: rsync::put

put files via rsync

Parameters:

$source  - source to copy from
$path    - path to copy to, defaults to $name
$user    - username on remote system
$purge   - if set, rsync will use '--delete'
$exlude  - string to be excluded
$keyfile - path to ssh key used to connect to remote host, defaults to /home/${user}/.ssh/id_rsa
$timeout - timeout in seconds, defaults to 900

Actions:

put files via rsync

Requires:

$source must be set

Sample Usage:

rsync::put { '${rsyncDestHost}:/repo/foo':
  user    => 'user',
  source  => "/repo/foo/",
}

Definition: rsync::server::module

sets up a rsync server

Parameters:

$path           - path to data
$comment        - rsync comment
$motd           - file containing motd info
$read_only      - yes||no, defaults to yes
$write_only     - yes||no, defaults to no
$list           - yes||no, defaults to no
$uid            - uid of rsync server, defaults to 0
$gid            - gid of rsync server, defaults to 0
$incoming_chmod - incoming file mode, defaults to 644
$outgoing_chmod - outgoing file mode, defaults to 644

Actions:

sets up an rsync server

Requires:

$path must be set

Sample Usage:

# setup default rsync repository
rsync::server::module{ 'repo':
  path    => $base,
  require => File[$base],
}