forked from sous-chefs/nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
30 lines (26 loc) · 963 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
25
26
27
28
29
30
name 'nginx'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@chef.io'
license 'Apache-2.0'
description 'Installs and configures nginx'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '9.0.0'
recipe 'nginx', 'Installs nginx package and sets up configuration with Debian apache style with sites-enabled/sites-available'
recipe 'nginx::source', 'Installs nginx from source and sets up configuration with Debian apache style with sites-enabled/sites-available'
depends 'build-essential', '>= 5.0'
depends 'ohai', '>= 4.1.0'
depends 'yum-epel'
supports 'amazon'
supports 'centos'
supports 'debian'
supports 'fedora'
supports 'oracle'
supports 'redhat'
supports 'scientific'
supports 'ubuntu'
supports 'suse'
supports 'opensuse'
supports 'opensuseleap'
source_url 'https://github.com/chef-cookbooks/nginx'
issues_url 'https://github.com/chef-cookbooks/nginx/issues'
chef_version '>= 13.3' if respond_to?(:chef_version)