forked from chef-boneyard/cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
18 lines (16 loc) · 810 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Installs and configures Chef Server"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.99.11"
recipe "chef-server", "Compacts the Chef Server CouchDB."
recipe "chef-server::rubygems-install", "Set up rubygem installed chef server."
recipe "chef-server::apache-proxy", "Configures Apache2 proxy for API and WebUI"
recipe "chef-server::nginx-proxy", "Configures NGINX proxy for API and WebUI"
%w{ ubuntu debian redhat centos fedora freebsd openbsd }.each do |os|
supports os
end
%w{ runit bluepill daemontools couchdb apache2 nginx openssl zlib xml java gecode }.each do |cb|
depends cb
end