forked from priestjim/chef-openresty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
25 lines (22 loc) · 1.03 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
name 'openresty'
maintainer 'Panagiotis Papadomitsos'
maintainer_email 'pj@ezgr.net'
license 'Apache 2.0'
description 'Installs and configures the OpenResty NGINX bundle'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')).chomp
version IO.read(File.join(File.dirname(__FILE__), 'VERSION')).chomp rescue '0.1.0'
chef_version '>= 11.0' if respond_to?(:chef_version)
issues_url 'https://github.com/priestjim/chef-openresty/issues' if respond_to?(:issues_url)
source_url 'https://github.com/priestjim/chef-openresty' if respond_to?(:source_url)
recipe 'openresty', 'Installs the OpenResty NGINX bundle and sets up configuration with Debian apache style sites-enabled/sites-available'
%w{ ubuntu debian centos redhat amazon scientific oracle fedora suse opensuseleap }.each do |os|
supports os
end
depends 'build-essential'
depends 'logrotate'
depends 'ohai', '~> 5.0'
depends 'yum'
depends 'apt'
depends 'git'
depends 'postgresql'
depends 'jemalloc', '~> 0.1.7'