forked from hectcastro/chef-graphite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
18 lines (16 loc) · 688 Bytes
/
metadata.rb
File metadata and controls
18 lines (16 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name "graphite"
maintainer "Hector Castro"
maintainer_email "hectcastro@gmail.com"
license "Apache 2.0"
description "Installs and configures Graphite."
version "0.1.5"
recipe "graphite", "Installs and configures Graphite and all of its components"
recipe "graphite::carbon", "Installs and configures Carbon"
recipe "graphite::dashboard", "Installs and configures the Graphite dashboard"
recipe "graphite::whisper", "Installs and configures Whisper"
%w{ apache2 logrotate python yum build-essential }.each do |d|
depends d
end
%w{ centos redhat ubuntu amazon }.each do |os|
supports os
end