summaryrefslogtreecommitdiff
path: root/examples/git
diff options
context:
space:
mode:
authorGarrett Honeycutt <garrett@puppetlabs.com>2012-08-29 00:24:15 +0200
committerGarrett Honeycutt <garrett@puppetlabs.com>2012-08-29 00:24:15 +0200
commit3975481f29ac1908b253365c9939f671459b5302 (patch)
treeeeba532233b023daccf7e0285ac4c0dfff4146e2 /examples/git
parentf3acccdfb8af8d98c8fc9c8e287ab22d27d62dac (diff)
Adds comma to last attribute to comply with style
Diffstat (limited to 'examples/git')
-rw-r--r--examples/git/bare_init.pp2
-rw-r--r--examples/git/clone.pp2
-rw-r--r--examples/git/working_copy_init.pp2
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/git/bare_init.pp b/examples/git/bare_init.pp
index f16d137..4166f6e 100644
--- a/examples/git/bare_init.pp
+++ b/examples/git/bare_init.pp
@@ -1,4 +1,4 @@
vcsrepo { '/tmp/vcstest-git-bare':
ensure => bare,
- provider => git
+ provider => git,
}
diff --git a/examples/git/clone.pp b/examples/git/clone.pp
index b7d5bfb..b29a4fd 100644
--- a/examples/git/clone.pp
+++ b/examples/git/clone.pp
@@ -1,5 +1,5 @@
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 b20af20..e3352eb 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,
- provider => git
+ provider => git,
}