aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/bugzilla/manifests/init.pp13
1 files changed, 2 insertions, 11 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp
index 758740df..36fa2fd8 100644
--- a/modules/bugzilla/manifests/init.pp
+++ b/modules/bugzilla/manifests/init.pp
@@ -1,12 +1,8 @@
class bugzilla {
- $bugzilla_location = "/usr/share/bugzilla/template/en/custom"
+ $bugzilla_location = "/usr/share/bugzilla/template/en/custom"
- package { ['bugzilla','graphviz']: }
-
- package { 'perl-Test-Taint': }
-
- package { 'perl-JSON-RPC': }
+ package { ['bugzilla','graphviz', 'perl-Test-Taint', 'perl-JSON-RPC']: }
$pgsql_password = extlookup("bugzilla_pgsql",'x')
$ldap_password = extlookup("bugzilla_ldap",'x')
@@ -17,8 +13,6 @@ class bugzilla {
}
file { '/etc/bugzilla/localconfig':
- ensure => present,
- owner => root,
group => apache,
mode => 640,
content => template("bugzilla/localconfig"),
@@ -27,8 +21,6 @@ class bugzilla {
file { '/var/lib/bugzilla/params':
- ensure => present,
- owner => root,
group => apache,
mode => 640,
content => template("bugzilla/params"),
@@ -59,7 +51,6 @@ class bugzilla {
file { "custom":
path => "/usr/share/bugzilla/template/en/custom",
ensure => directory,
- owner => root,
group => apache,
mode => 640,
recurse => true,