forked from sous-chefs/nagios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
24 lines (20 loc) · 818 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
23
24
name 'nagios'
maintainer 'Sous Chefs'
maintainer_email '[email protected]'
license 'Apache-2.0'
description 'Installs and configures Nagios server'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '7.2.7'
issues_url 'https://github.com/sous-chefs/nagios/issues'
source_url 'https://github.com/sous-chefs/nagios'
chef_version '>= 12.1' if respond_to?(:chef_version)
recipe 'default', 'Installs Nagios server.'
recipe 'nagios::pagerduty', 'Integrates contacts w/ PagerDuty API'
depends 'apache2', '>= 2.0'
depends 'zap', '>= 0.6.0'
%w( build-essential php chef_nginx nginx_simplecgi yum-epel nrpe ).each do |cb|
depends cb
end
%w( debian ubuntu redhat centos fedora scientific amazon oracle).each do |os|
supports os
end