From e6f64407e33afd476bf0daea12b6b6065ba53c99 Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Mon, 15 Nov 2010 00:51:36 +0000 Subject: Add params file --- modules/bugzilla/manifests/init.pp | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'modules/bugzilla/manifests/init.pp') 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") + } } -- cgit v1.2.1