Puppet module to manage VCS repositories
Go to file
2010-03-14 03:00:37 -07:00
examples Working Bazaar support & docs 2010-03-14 01:19:13 -08:00
lib/puppet Basic Bazaar support 2010-03-14 01:03:21 -08:00
spec Basic Bazaar support 2010-03-14 01:03:21 -08:00
.gitignore Add .gitignore 2010-03-13 14:02:55 -08:00
Modulefile Convert bare repos to working copy repos and vice-versa 2010-03-13 00:00:11 -08:00
Rakefile Add Rakefile for the non-autotest inclined 2010-03-13 12:18:00 -08:00
README.BZR.markdown Add pointer for Puppet SSH approach 2010-03-14 03:00:37 -07:00
README.CVS.markdown Add pointer for Puppet SSH approach 2010-03-14 03:00:37 -07:00
README.GIT.markdown Add pointer for Puppet SSH approach 2010-03-14 03:00:37 -07:00
README.HG.markdown Add pointer for Puppet SSH approach 2010-03-14 03:00:37 -07:00
README.markdown Convert bare repos to working copy repos and vice-versa 2010-03-13 00:00:11 -08:00
README.SVN.markdown Add pointer for Puppet SSH approach 2010-03-14 03:00:37 -07:00

Using vcsrepo with Subversion

To create a blank repository

To create a blank repository suitable for use as a central repository, define a vcsrepo without a source or revision:

vcsrepo { "/path/to/repo":
  ensure   => present,
  provider => svn
}

To checkout from a repository

Provide a source qualified to the branch/tag you want:

vcsrepo { "/path/to/repo":
    ensure   => present,
    provider => svn,
    source   => "svn://svnrepo/hello/branches/foo"
}

You can provide a specific revision:

vcsrepo { "/path/to/repo":
    ensure   => present,
    provider => svn,
    source   => "svn://svnrepo/hello/branches/foo",
    revision => '1234'
}

For sources that use SSH (eg, svn+ssh://...)

Manage your SSH keys with Puppet and use require in your vcsrepo to ensure they are present. For more information, see the require metaparameter documentation1.

More Examples

For examples you can run, see examples/svn/