forked from djoos-cookbooks/newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
29 lines (25 loc) · 1.25 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name 'newrelic'
maintainer 'David Joos'
maintainer_email 'development@davidjoos.com'
license 'MIT'
description 'Installs/Configures New Relic'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '2.27.1'
%w(debian ubuntu redhat centos fedora scientific amazon windows smartos oracle).each do |os|
supports os
end
source_url 'https://github.com/djoos-cookbooks/newrelic' if respond_to?(:source_url)
issues_url 'https://github.com/djoos-cookbooks/newrelic/issues' if respond_to?(:issues_url)
depends 'poise-python'
depends 'curl'
depends 'apt'
depends 'yum'
recipe 'newrelic', 'Adds the New Relic repository, installs & configures the New Relic server monitor agent.'
recipe 'newrelic::repository', 'Adds the New Relic repository.'
recipe 'newrelic::server_monitor_agent', 'Installs & configures the New Relic server monitor agent.'
recipe 'newrelic::dotnet_agent', 'Installs New Relic .NET agent.'
recipe 'newrelic::java_agent', 'Installs the New Relic Java agent.'
recipe 'newrelic::nodejs_agent', 'Installs New Relic Node.js agent.'
recipe 'newrelic::php_agent', 'Installs the New Relic PHP agent.'
recipe 'newrelic::python_agent', 'Installs the New Relic Python agent.'
recipe 'newrelic::ruby_agent', 'Installs the New Relic Ruby agent.'