Puppet module to manage VCS repositories
Go to file
2011-09-21 11:10:10 -07:00
examples Working Bazaar support & docs 2010-03-14 01:19:13 -08:00
lib/puppet Fixed Bug #9219 - vcsrepo updates too often 2011-08-29 01:15:51 -07:00
spec Support different create and revision= operations depending on the revision type in Git (commit, tag, or local/remote branch) 2010-03-18 14:46:12 -07:00
.gitignore Add .gitignore 2010-03-13 14:02:55 -08:00
LICENSE Add GPL license (from Puppet core) 2010-03-14 03:24:15 -07:00
Modulefile Incremented version 2011-09-21 11:10:10 -07:00
Rakefile Add Rakefile for the non-autotest inclined 2010-03-13 12:18:00 -08:00
README.BZR.markdown Tweak markup 2010-03-14 03:08:03 -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 Tweak markup 2010-03-14 03:08:03 -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/