/[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 291 - (show annotations) (download)
Thu Nov 18 20:23:56 2010 UTC (13 years, 5 months ago) by dmorgan
File size: 782 byte(s)
Fix bugzilla init.pp
1 class bugzilla {
2
3 package { 'bugzilla':
4 ensure => installed;
5 }
6
7 $password = extlookup("bugzilla_password")
8 $passwordLdap = extlookup("bugzilla_ldap")
9
10 file { '/etc/bugzilla/localconfig':
11 ensure => present,
12 owner => root,
13 group => root,
14 mode => 644,
15 content => template("bugzilla/localconfig")
16 }
17
18
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
27 include apache::mod_fcgid
28 apache::webapp_other{"bugzilla":
29 webapp_file => "bugzilla/webapp_bugzilla.conf",
30 }
31
32 apache::vhost_other_app { "bugs.$domain":
33 vhost_file => "bugzilla/vhost_bugs.mageia.org.conf",
34 }
35 }
36

  ViewVC Help
Powered by ViewVC 1.1.30