-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmetadata.rb
24 lines (21 loc) · 1.36 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
name 'graylog2'
maintainer 'Stephan Oudmaijer'
maintainer_email '[email protected]'
license 'Apache License, Version 2.0'
description 'Installs/Configures graylog2'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.1.0'
recipe 'graylog2::default', 'Installs and configures a graylog2 server'
recipe 'graylog2::server', 'Installs and configures a graylog2 server with Java, ElasticSearch and single MongoDB instance'
recipe 'graylog2::server-only', 'Installs and configures a graylog2 server'
recipe 'graylog2::web-interface', 'Installs and configures a graylog2 web interface with Java'
recipe 'graylog2::web-interface-only', 'Installs and configures a graylog2 web interface'
recipe 'graylog2::nginx', 'Installs and configures nginx as reverse proxy for the web interface'
%w{ ubuntu debian redhat centos }.each do |os|
supports os
end
depends 'ark', '~> 0.8.0'
depends 'java', '~> 1.22.0'
depends 'elasticsearch', '~> 0.3.8'
depends 'mongodb', '~> 0.16.0'
depends 'nginx', '~> 2.2.0'