summaryrefslogtreecommitdiff
path: root/examples/git
diff options
context:
space:
mode:
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,
}