summaryrefslogtreecommitdiff
path: root/examples/git
diff options
context:
space:
mode:
authorBruce Williams <bruce@codefluency.com>2010-03-13 15:19:39 -0800
committerBruce Williams <bruce@codefluency.com>2010-03-13 15:19:39 -0800
commit15ddecef0ee3634d730ae2a6342859dbeba6d835 (patch)
tree622cac34ccb4164f8fc96df6d153c0f871f34081 /examples/git
parent9d1e7c7284d03e7524d39ab9e000ec1371c1724d (diff)
Basic Mercurial support
Diffstat (limited to 'examples/git')
-rw-r--r--examples/git/init.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/git/init.pp b/examples/git/init.pp
new file mode 100644
index 0000000..7763a91
--- /dev/null
+++ b/examples/git/init.pp
@@ -0,0 +1,15 @@
+vcsrepo { "/tmp/vcstest-git-bare":
+ ensure => bare,
+ provider => git
+}
+
+vcsrepo { "/tmp/vcstest-git-wc":
+ ensure => present,
+ provider => git
+}
+
+vcsrepo { "/tmp/vcstest-git-clone":
+ ensure => present,
+ provider => git,
+ source => "git://github.com/bruce/rtex.git"
+}