aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-01-08 22:24:41 +0000
committerMichael Scherer <misc@mageia.org>2012-01-08 22:24:41 +0000
commit75fac2802ec83ecaefa4140d10a8eaec5f1f6dce (patch)
treed7480b65769608445f834d9ab0019f8e628219c4
parente1d5569b88d0b3dfd1b2fe3549ecde7a67c0f96c (diff)
downloadpuppet-75fac2802ec83ecaefa4140d10a8eaec5f1f6dce.tar
puppet-75fac2802ec83ecaefa4140d10a8eaec5f1f6dce.tar.gz
puppet-75fac2802ec83ecaefa4140d10a8eaec5f1f6dce.tar.bz2
puppet-75fac2802ec83ecaefa4140d10a8eaec5f1f6dce.tar.xz
puppet-75fac2802ec83ecaefa4140d10a8eaec5f1f6dce.zip
some cleaning of bugzilla module
-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,