aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
diff options
context:
space:
mode:
authorDexter Morgan <dmorgan@mageia.org>2010-11-15 00:51:36 +0000
committerDexter Morgan <dmorgan@mageia.org>2010-11-15 00:51:36 +0000
commite6f64407e33afd476bf0daea12b6b6065ba53c99 (patch)
treed6718b887b9ef9750faaa020fbd37938d516cac5 /modules/bugzilla/manifests/init.pp
parentf51b438ccdac881b1bd723e78dd9a083ce1bfb54 (diff)
downloadpuppet-e6f64407e33afd476bf0daea12b6b6065ba53c99.tar
puppet-e6f64407e33afd476bf0daea12b6b6065ba53c99.tar.gz
puppet-e6f64407e33afd476bf0daea12b6b6065ba53c99.tar.bz2
puppet-e6f64407e33afd476bf0daea12b6b6065ba53c99.tar.xz
puppet-e6f64407e33afd476bf0daea12b6b6065ba53c99.zip
Add params file
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")
+ }
}