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

    package { bugzilla
        ensure => installed;
    }

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

}