forked from sous-chefs/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
31 lines (27 loc) · 1.21 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
28
29
30
31
name 'postgresql'
maintainer 'Heavy Water Operations, LLC'
maintainer_email 'helpdesk@heavywater.io'
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 '4.0.7'
source_url 'https://github.com/hw-cookbooks/postgresql' if respond_to?(:source_url)
issues_url 'https://github.com/hw-cookbooks/postgresql/issues' if respond_to?(:issues_url)
chef_version '>= 11.0' if respond_to?(:chef_version)
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'
supports 'ubuntu', '>= 12.04'
supports 'debian', '>= 7.0'
supports 'opensuse', '>= 13.0'
supports 'suse', '>= 12.0'
%w(fedora opensuseleap amazon).each do |os|
supports os
end
%w(redhat centos scientific oracle).each do |el|
supports el, '>= 6.0'
end
depends 'apt', '>= 1.9.0'
depends 'build-essential', '>= 2.0.0'
depends 'openssl', '>= 4.0'