From 8acf719c0f0560f15bd60b0be75ef5e25257d6ca Mon Sep 17 00:00:00 2001 From: Adam Gibbins Date: Sun, 11 Mar 2012 21:10:08 +0000 Subject: Make Puppet DSL compliant with the style guides and puppet lint. --- examples/git/bare_init.pp | 4 ++-- examples/git/clone.pp | 8 ++++---- examples/git/working_copy_init.pp | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) (limited to 'examples/git') diff --git a/examples/git/bare_init.pp b/examples/git/bare_init.pp index c70e705..f16d137 100644 --- a/examples/git/bare_init.pp +++ b/examples/git/bare_init.pp @@ -1,4 +1,4 @@ -vcsrepo { "/tmp/vcstest-git-bare": - ensure => bare, +vcsrepo { '/tmp/vcstest-git-bare': + ensure => bare, provider => git } diff --git a/examples/git/clone.pp b/examples/git/clone.pp index fe706cc..b7d5bfb 100644 --- a/examples/git/clone.pp +++ b/examples/git/clone.pp @@ -1,5 +1,5 @@ -vcsrepo { "/tmp/vcstest-git-clone": - ensure => present, +vcsrepo { '/tmp/vcstest-git-clone': + ensure => present, provider => git, - source => "git://github.com/bruce/rtex.git" -} + source => 'git://github.com/bruce/rtex.git' +} diff --git a/examples/git/working_copy_init.pp b/examples/git/working_copy_init.pp index f92fbee..b20af20 100644 --- a/examples/git/working_copy_init.pp +++ b/examples/git/working_copy_init.pp @@ -1,4 +1,4 @@ -vcsrepo { "/tmp/vcstest-git-wc": - ensure => present, +vcsrepo { '/tmp/vcstest-git-wc': + ensure => present, provider => git } -- cgit v1.2.3