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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 421 - (show annotations) (download)
Tue Nov 23 16:01:26 2010 UTC (13 years, 4 months ago) by misc
File size: 753 byte(s)
- do not include apache::mod_fcgid as bugzilla do not use fast cgi, and apache::base is already included

1 class bugzilla {
2
3 package { 'bugzilla':
4 ensure => installed;
5 }
6
7 $password = extlookup("bugzilla_password",'x')
8 $passwordLdap = extlookup("bugzilla_ldap",'x')
9
10 file { '/etc/bugzilla/localconfig':
11 ensure => present,
12 owner => root,
13 group => apache,
14 mode => 640,
15 content => template("bugzilla/localconfig")
16 }
17
18
19 file { '/var/lib/bugzilla/params':
20 ensure => present,
21 owner => root,
22 group => apache,
23 mode => 640,
24 content => template("bugzilla/params")
25 }
26
27 apache::webapp_other{"bugzilla":
28 webapp_file => "bugzilla/webapp_bugzilla.conf",
29 }
30
31 apache::vhost_other_app { "bugs.$domain":
32 vhost_file => "bugzilla/vhost_bugs.conf",
33 }
34 }
35

  ViewVC Help
Powered by ViewVC 1.1.30