diff options
Diffstat (limited to 'modules/bugzilla/manifests')
-rw-r--r-- | modules/bugzilla/manifests/init.pp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp new file mode 100644 index 00000000..2649c217 --- /dev/null +++ b/modules/bugzilla/manifests/init.pp @@ -0,0 +1,16 @@ +class bugzilla { + + package { bugzilla + ensure => installed; + } + + file { '/etc/bugzilla/localconfig': + ensure => present, + owner => root, + group => root, + mode => 644, + content => template("bugzilla/localconfig") + } + +} + |