diff options
author | Hunter Haugen <hunter@puppetlabs.com> | 2014-06-18 09:00:06 -0700 |
---|---|---|
committer | Hunter Haugen <hunter@puppetlabs.com> | 2014-06-18 09:00:06 -0700 |
commit | c604c43ef89b8bc181c3016c907fc6584d566f67 (patch) | |
tree | 22edb6816dd4e33c435758bf6fe57165b0908e0d /README.BZR.markdown | |
parent | ecb4ad6a1ddd77ab7b6772e96e0f787c03c3f27a (diff) | |
parent | 8e4a9d2201c73fdd8d2601fcdec64f4089dbdb8f (diff) | |
download | puppet-vcsrepo-c604c43ef89b8bc181c3016c907fc6584d566f67.tar.gz puppet-vcsrepo-c604c43ef89b8bc181c3016c907fc6584d566f67.tar.bz2 |
Merge remote-tracking branch 'laurenrother/readme' into 1.0.x
Diffstat (limited to 'README.BZR.markdown')
-rw-r--r-- | README.BZR.markdown | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/README.BZR.markdown b/README.BZR.markdown deleted file mode 100644 index cc257e9..0000000 --- a/README.BZR.markdown +++ /dev/null @@ -1,47 +0,0 @@ -Using vcsrepo with Bazaar -========================= - -To create a blank repository ----------------------------- - -Define a `vcsrepo` without a `source` or `revision`: - - vcsrepo { "/path/to/repo": - ensure => present, - provider => bzr - } - -To branch from an existing repository -------------------------------------- - -Provide the `source` location: - - vcsrepo { "/path/to/repo": - ensure => present, - provider => bzr, - source => 'lp:myproj' - } - -For a specific revision, use `revision` with a valid revisionspec -(see `bzr help revisionspec` for more information on formatting a revision): - - vcsrepo { "/path/to/repo": - ensure => present, - provider => bzr, - source => 'lp:myproj', - revision => 'menesis@pov.lt-20100309191856-4wmfqzc803fj300x' - } - -For sources that use SSH (eg, `bzr+ssh://...`, `sftp://...`) ------------------------------------------------------------- - -Manage your SSH keys with Puppet and use `require` in your `vcsrepo` -to ensure they are present. For more information, see the `require` -metaparameter documentation[1]. - -More Examples -------------- - -For examples you can run, see `examples/bzr/` - -[1]: http://docs.puppetlabs.com/references/stable/metaparameter.html#require |