forked from sous-chefs/nagios
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmetadata.rb
More file actions
19 lines (16 loc) · 717 Bytes
/
metadata.rb
File metadata and controls
19 lines (16 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
maintainer "Kevin Berry"
maintainer_email "kevin@opensourcealchemist.com"
license "Apache 2.0"
description "Installs and configures icinga, and plugins on clients"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.3.3"
recipe "icinga", "Includes the client recipe."
recipe "icinga::client", "Installs and configures a icinga client with nrpe"
recipe "icinga::server", "Installs and configures a icinga server"
recipe "icinga::pagerduty", "Integrates contacts w/ PagerDuty API"
%w{ apache2 build-essential php nginx nginx_simplecgi }.each do |cb|
depends cb
end
%w{ debian ubuntu redhat centos fedora scientific}.each do |os|
supports os
end