summaryrefslogtreecommitdiff
path: root/examples/cvs/local.pp
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/cvs/local.pp
parentb3de3a5c2b23cef308b6d814a08b4e2a3ab6e791 (diff)
Make Puppet DSL compliant with the style guides and puppet lint.
Diffstat (limited to 'examples/cvs/local.pp')
-rw-r--r--examples/cvs/local.pp12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/cvs/local.pp b/examples/cvs/local.pp
index 290616c..c72652d 100644
--- a/examples/cvs/local.pp
+++ b/examples/cvs/local.pp
@@ -1,11 +1,11 @@
-vcsrepo { "/tmp/vcstest-cvs-repo":
- ensure => present,
+vcsrepo { '/tmp/vcstest-cvs-repo':
+ ensure => present,
provider => cvs
}
-vcsrepo { "/tmp/vcstest-cvs-workspace-local":
- ensure => present,
+vcsrepo { '/tmp/vcstest-cvs-workspace-local':
+ ensure => present,
provider => cvs,
- source => "/tmp/vcstest-cvs-repo",
- require => Vcsrepo["/tmp/vcstest-cvs-repo"]
+ source => '/tmp/vcstest-cvs-repo',
+ require => Vcsrepo['/tmp/vcstest-cvs-repo']
}