aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
blob: 4e2a70bd98965a1997a18d32da9e05e201c4b343 (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
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")
    }
}