/[adm]/puppet/modules/bugzilla/manifests/init.pp
ViewVC logotype

Annotation of /puppet/modules/bugzilla/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 254 - (hide annotations) (download)
Mon Nov 15 00:51:36 2010 UTC (13 years, 5 months ago) by dmorgan
File size: 535 byte(s)
Add params file
1 dmorgan 188 class bugzilla {
2    
3     package { bugzilla
4     ensure => installed;
5     }
6    
7 misc 222 $password = extlookup("bugzilla_password")
8 dmorgan 254 $passwordLdap = extlookup("bugzilla_ldap")
9    
10 dmorgan 188 file { '/etc/bugzilla/localconfig':
11 dmorgan 254 ensure => present,
12     owner => root,
13     group => root,
14     mode => 644,
15     content => template("bugzilla/localconfig")
16 dmorgan 188 }
17    
18 dmorgan 254
19     file { '/var/lib/bugzilla/params':
20     ensure => present,
21     owner => root,
22     group => root,
23     mode => 644,
24     content => template("bugzilla/params")
25     }
26 dmorgan 188 }
27    

  ViewVC Help
Powered by ViewVC 1.1.30