forked from sous-chefs/postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
28 lines (24 loc) · 893 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
# frozen_string_literal: true
name 'postgresql'
maintainer 'Sous Chefs'
maintainer_email '[email protected]'
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 '6.1.1'
source_url 'https://github.com/sous-chefs/postgresql'
issues_url 'https://github.com/sous-chefs/postgresql/issues'
chef_version '>= 12.1' if respond_to?(:chef_version)
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 'compat_resource', '>= 12.16.3'
depends 'build-essential', '>= 2.0.0'
depends 'openssl', '>= 4.0'