aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/bugzilla/manifests/init.pp')
-rw-r--r--modules/bugzilla/manifests/init.pp20
1 files changed, 15 insertions, 5 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp
index 6f758ce5..4e2a70bd 100644
--- a/modules/bugzilla/manifests/init.pp
+++ b/modules/bugzilla/manifests/init.pp
@@ -5,13 +5,23 @@ class bugzilla {
}
$password = extlookup("bugzilla_password")
+ $passwordLdap = extlookup("bugzilla_ldap")
+
file { '/etc/bugzilla/localconfig':
- ensure => present,
- owner => root,
- group => root,
- mode => 644,
- content => template("bugzilla/localconfig")
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 644,
+ content => template("bugzilla/localconfig")
}
+
+ file { '/var/lib/bugzilla/params':
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 644,
+ content => template("bugzilla/params")
+ }
}