forked from icebourg/chef-collectd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
metadata.rb
22 lines (19 loc) · 867 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name "collectd"
maintainer "Hector Castro"
maintainer_email "hectcastro@gmail.com"
license "Apache 2.0"
description "Installs and configures collectd."
version "0.2.3"
recipe "collectd", "Installs and configures collectd"
recipe "collectd::attribute_driven", "Installs collectd plugins via node attributes"
recipe "collectd::packages", "Installs collectd via packages"
recipe "collectd::recompile", "Attempts to recompile collectd"
recipe "collectd::logrotate", "sets up logrotation for collectd logfiles"
depends 'build-essential'
depends 'logrotate'
depends 'apt', '~> 2.2'
depends 'yum', '~> 3.1'
depends 'yum-epel', '~> 0.3'
%w{ amazon centos fedora redhat scientific ubuntu }.each do |os|
supports os
end