aboutsummaryrefslogtreecommitdiffstats
path: root/modules/bugzilla/manifests/init.pp
blob: 6f758ce52e0148ace3e151ac5f43dc4a99f147e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class bugzilla {

    package { bugzilla
        ensure => installed;
    }

    $password = extlookup("bugzilla_password")
    file { '/etc/bugzilla/localconfig':
        ensure => present,
        owner => root,
        group => root,
        mode => 644,
        content => template("bugzilla/localconfig")
    }

}