Make Puppet DSL compliant with the style guides and puppet lint.
This commit is contained in:
parent
b3de3a5c2b
commit
8acf719c0f
@ -1,4 +1,4 @@
|
||||
vcsrepo { "/tmp/vcstest-bzr-branch":
|
||||
vcsrepo { '/tmp/vcstest-bzr-branch':
|
||||
ensure => present,
|
||||
provider => bzr,
|
||||
source => 'lp:do',
|
||||
|
@ -1,4 +1,4 @@
|
||||
vcsrepo { "/tmp/vcstest-bzr-init":
|
||||
vcsrepo { '/tmp/vcstest-bzr-init':
|
||||
ensure => present,
|
||||
provider => bzr
|
||||
}
|
||||
|
@ -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']
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
vcsrepo { "/tmp/vcstest-cvs-workspace-remote":
|
||||
ensure => present,
|
||||
vcsrepo { '/tmp/vcstest-cvs-workspace-remote':
|
||||
ensure => present,
|
||||
provider => cvs,
|
||||
source => ":pserver:anonymous@cvs.sv.gnu.org:/sources/leetcvrt"
|
||||
source => ':pserver:anonymous@cvs.sv.gnu.org:/sources/leetcvrt'
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
vcsrepo { "/tmp/vcstest-git-bare":
|
||||
ensure => bare,
|
||||
vcsrepo { '/tmp/vcstest-git-bare':
|
||||
ensure => bare,
|
||||
provider => git
|
||||
}
|
||||
|
@ -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'
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
vcsrepo { "/tmp/vcstest-git-wc":
|
||||
ensure => present,
|
||||
vcsrepo { '/tmp/vcstest-git-wc':
|
||||
ensure => present,
|
||||
provider => git
|
||||
}
|
||||
|
@ -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'
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
vcsrepo { "/tmp/vcstest-hg-init":
|
||||
ensure => present,
|
||||
vcsrepo { '/tmp/vcstest-hg-init':
|
||||
ensure => present,
|
||||
provider => hg
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
vcsrepo { "/tmp/vcstest-svn-checkout":
|
||||
ensure => present,
|
||||
vcsrepo { '/tmp/vcstest-svn-checkout':
|
||||
ensure => present,
|
||||
provider => svn,
|
||||
source => 'http://svn.edgewall.org/repos/babel/trunk'
|
||||
source => 'http://svn.edgewall.org/repos/babel/trunk'
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
vcsrepo { "/tmp/vcstest-svn-server":
|
||||
ensure => present,
|
||||
vcsrepo { '/tmp/vcstest-svn-server':
|
||||
ensure => present,
|
||||
provider => svn
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user