aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-08-18 00:22:13 +0000
committerMichael Scherer <misc@mageia.org>2011-08-18 00:22:13 +0000
commit92353c49f0e0d2fdf57eb9898be2ecf1853748ee (patch)
tree6d52247b361c0bb5eeccea00f20383fb9dec3cf2 /modules/bugzilla/manifests/init.pp
parentd74baedf1d26ce9be443da0a294e44c4d59b12d0 (diff)
downloadpuppet-92353c49f0e0d2fdf57eb9898be2ecf1853748ee.tar
puppet-92353c49f0e0d2fdf57eb9898be2ecf1853748ee.tar.gz
puppet-92353c49f0e0d2fdf57eb9898be2ecf1853748ee.tar.bz2
puppet-92353c49f0e0d2fdf57eb9898be2ecf1853748ee.tar.xz
puppet-92353c49f0e0d2fdf57eb9898be2ecf1853748ee.zip
fix missing comma, causing syntax error on alamut
Diffstat (limited to 'modules/bugzilla/manifests/init.pp')
-rw-r--r--modules/bugzilla/manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp
index a0148af8..f945ff5e 100644
--- a/modules/bugzilla/manifests/init.pp
+++ b/modules/bugzilla/manifests/init.pp
@@ -37,7 +37,7 @@ class bugzilla {
owner => root,
group => apache,
mode => 640,
- content => template("bugzilla/params")
+ content => template("bugzilla/params"),
require => Package[bugzilla],
}
@@ -69,6 +69,6 @@ class bugzilla {
group => apache,
mode => 640,
recurse => true,
- require => Subversion::Snapshot[$bugzilla_location]
+ require => Subversion::Snapshot[$bugzilla_location],
}
}