summaryrefslogtreecommitdiff
path: root/examples/hg
diff options
context:
space:
mode:
authorAdam Gibbins <adam@adamgibbins.com>2012-03-11 21:10:08 +0000
committerAdam Gibbins <adam@adamgibbins.com>2012-03-11 21:10:08 +0000
commit8acf719c0f0560f15bd60b0be75ef5e25257d6ca (patch)
tree409a0880a39e3eaa3792cd0db113b19b11bee408 /examples/hg
parentb3de3a5c2b23cef308b6d814a08b4e2a3ab6e791 (diff)
Make Puppet DSL compliant with the style guides and puppet lint.
Diffstat (limited to 'examples/hg')
-rw-r--r--examples/hg/clone.pp8
-rw-r--r--examples/hg/init_repo.pp4
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/hg/clone.pp b/examples/hg/clone.pp
index c7a7ab5..92b3335 100644
--- a/examples/hg/clone.pp
+++ b/examples/hg/clone.pp
@@ -1,6 +1,6 @@
-vcsrepo { "/tmp/vcstest-hg-clone":
- ensure => present,
+vcsrepo { '/tmp/vcstest-hg-clone':
+ ensure => present,
provider => hg,
- source => "http://hg.basho.com/riak",
+ source => 'http://hg.basho.com/riak',
revision => 'riak-0.5.3'
-}
+}
diff --git a/examples/hg/init_repo.pp b/examples/hg/init_repo.pp
index 660a78a..52aba4c 100644
--- a/examples/hg/init_repo.pp
+++ b/examples/hg/init_repo.pp
@@ -1,4 +1,4 @@
-vcsrepo { "/tmp/vcstest-hg-init":
- ensure => present,
+vcsrepo { '/tmp/vcstest-hg-init':
+ ensure => present,
provider => hg
}