summaryrefslogtreecommitdiff
path: root/README.CVS.markdown
diff options
context:
space:
mode:
authorLauren Rother <lauren.rother@puppetlabs.com>2014-06-17 15:18:10 -0700
committerLauren Rother <lauren.rother@puppetlabs.com>2014-06-17 15:58:45 -0700
commit8e4a9d2201c73fdd8d2601fcdec64f4089dbdb8f (patch)
tree0c2c5a6228911503e38409ed7ef5704d0951bd32 /README.CVS.markdown
parent3d4f2f81eace493052b9dc038a12ef900554025b (diff)
Remove extra READMEs
Delete the per-VCS readmes. They are all combined in the main readme now.
Diffstat (limited to 'README.CVS.markdown')
-rw-r--r--README.CVS.markdown66
1 files changed, 0 insertions, 66 deletions
diff --git a/README.CVS.markdown b/README.CVS.markdown
deleted file mode 100644
index 3bdd59d..0000000
--- a/README.CVS.markdown
+++ /dev/null
@@ -1,66 +0,0 @@
-Using vcsrepo with CVS
-======================
-
-To create a blank repository
-----------------------------
-
-Define a `vcsrepo` without a `source` or `revision`:
-
- vcsrepo { "/path/to/repo":
- ensure => present,
- provider => cvs
- }
-
-To checkout/update from a repository
-------------------------------------
-
-To get the current mainline:
-
- vcsrepo { "/path/to/workspace":
- ensure => present,
- provider => cvs,
- source => ":pserver:anonymous@example.com:/sources/myproj"
- }
-
-To get a specific module on the current mainline:
-
- vcsrepo {"/vagrant/lockss-daemon-source":
- ensure => present,
- provider => cvs,
- source => ":pserver:anonymous@lockss.cvs.sourceforge.net:/cvsroot/lockss",
- module => "lockss-daemon",
- }
-
-
-You can use the `compression` parameter (it works like CVS `-z`):
-
- vcsrepo { "/path/to/workspace":
- ensure => present,
- provider => cvs,
- compression => 3,
- source => ":pserver:anonymous@example.com:/sources/myproj"
- }
-
-For a specific tag, use `revision`:
-
- vcsrepo { "/path/to/workspace":
- ensure => present,
- provider => cvs,
- compression => 3,
- source => ":pserver:anonymous@example.com:/sources/myproj",
- revision => "SOMETAG"
- }
-
-For sources that use 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 documentation[1].
-
-More Examples
--------------
-
-For examples you can run, see `examples/cvs/`
-
-[1]: http://docs.puppetlabs.com/references/stable/metaparameter.html#require