forked from wohali/couchdb-cookbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
27 lines (25 loc) · 1.07 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
26
27
name 'couchdb'
maintainer 'Joan Touzet'
maintainer_email 'wohali@apache.org'
license 'Apache 2.0'
description 'Installs CouchDB package and starts service'
long_description <<-EOH
Installs the CouchDB package if it is available from an package repository on
the node. If the package repository is not available, CouchDB needs to be
installed via some other method, either a backported package, or compiled
directly from source. CouchDB is available on Red Hat-based systems through
the EPEL Yum Repository.
EOH
version '2.5.3'
depends 'erlang'
depends 'yum'
depends 'yum-epel'
recipe 'couchdb', 'Installs and configures CouchDB package'
recipe 'couchdb::source', 'Installs and configures CouchDB from source'
supports 'ubuntu', '>= 8.10' # for package in APT
supports 'debian', '>= 5.0' # for package in APT
supports 'openbsd'
supports 'freebsd'
%w{ redhat centos fedora scientific oracle amazon }.each do |os|
supports os # requires EPEL Yum Repository
end