diff options
author | Dexter Morgan <dmorgan@mageia.org> | 2010-11-07 00:46:55 +0000 |
---|---|---|
committer | Dexter Morgan <dmorgan@mageia.org> | 2010-11-07 00:46:55 +0000 |
commit | 7e76a7a51492d4ffffdd87034e02418abf59966f (patch) | |
tree | 72d9e1fe7954f6d3bc1fd2cd4017dc6fc5ae9468 /modules/bugzilla/manifests | |
parent | 14c86779788e7080b3ffa803de631b34374089e1 (diff) | |
download | puppet-7e76a7a51492d4ffffdd87034e02418abf59966f.tar puppet-7e76a7a51492d4ffffdd87034e02418abf59966f.tar.gz puppet-7e76a7a51492d4ffffdd87034e02418abf59966f.tar.bz2 puppet-7e76a7a51492d4ffffdd87034e02418abf59966f.tar.xz puppet-7e76a7a51492d4ffffdd87034e02418abf59966f.zip |
First commit for the puppet bugzilla module
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") + } + +} + |