From 7e76a7a51492d4ffffdd87034e02418abf59966f Mon Sep 17 00:00:00 2001 From: Dexter Morgan Date: Sun, 7 Nov 2010 00:46:55 +0000 Subject: First commit for the puppet bugzilla module --- modules/bugzilla/manifests/init.pp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 modules/bugzilla/manifests/init.pp (limited to 'modules/bugzilla/manifests/init.pp') 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") + } + +} + -- cgit v1.2.1