forked from sous-chefs/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 3
/
metadata.rb
25 lines (22 loc) · 1.01 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 "postgresql"
maintainer "Opscode, Inc."
maintainer_email "cookbooks@opscode.com"
license "Apache 2.0"
description "Installs and configures postgresql for clients or servers"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "3.2.1"
recipe "postgresql", "Includes postgresql::client"
recipe "postgresql::ruby", "Installs pg gem for Ruby bindings"
recipe "postgresql::client", "Installs postgresql client package(s)"
recipe "postgresql::server", "Installs postgresql server packages, templates"
recipe "postgresql::server_redhat", "Installs postgresql server packages, redhat family style"
recipe "postgresql::server_debian", "Installs postgresql server packages, debian family style"
%w{ubuntu debian fedora suse amazon}.each do |os|
supports os
end
%w{redhat centos scientific oracle}.each do |el|
supports el, ">= 6.0"
end
depends "apt"
depends "build-essential"
depends "openssl"