diff options
author | Bruce Williams <bruce@codefluency.com> | 2010-03-13 15:19:39 -0800 |
---|---|---|
committer | Bruce Williams <bruce@codefluency.com> | 2010-03-13 15:19:39 -0800 |
commit | 15ddecef0ee3634d730ae2a6342859dbeba6d835 (patch) | |
tree | 622cac34ccb4164f8fc96df6d153c0f871f34081 /examples/hg/init.pp | |
parent | 9d1e7c7284d03e7524d39ab9e000ec1371c1724d (diff) |
Basic Mercurial support
Diffstat (limited to 'examples/hg/init.pp')
-rw-r--r-- | examples/hg/init.pp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/hg/init.pp b/examples/hg/init.pp new file mode 100644 index 0000000..620806e --- /dev/null +++ b/examples/hg/init.pp @@ -0,0 +1,11 @@ +vcsrepo { "/tmp/vcstest-hg-init": + ensure => present, + provider => hg +} + +vcsrepo { "/tmp/vcstest-hg-clone": + ensure => present, + provider => hg, + source => "http://hg.basho.com/riak/", + revision => '34e6012c783a' +} |