aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
blob: c50a91c7eb93d7c28dea294711f430c3bf55fd3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class bugzilla {

    package { bugzilla
        ensure => installed;
    }

    $password = extlookup("bugzilla_password")
    $passwordLdap = extlookup("bugzilla_ldap")

    file { '/etc/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")
    }

    include apache::mod_fcgid
    apache::webapp_other{"bugzilla":
        webapp_file => "bugzilla/webapp_bugzilla.conf",
      }

    apache::vhost_other_app { "bugs.$domain":
      vhost_file => "bugzilla/vhost_bugs.mageia.org.conf",
    }
}