Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

postgresql 4.0.6 #351

Merged
merged 5 commits into from Apr 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@ postgresql Cookbook CHANGELOG
=============================
This file is used to list changes made in each version of the postgresql cookbook.

v4.0.6
-----
* Add 16.04 Xenial to the allowed list

v4.0.4
-----
* Add leading pound symbol on pg_hba.conf template comment line
Expand Down
4 changes: 2 additions & 2 deletions metadata.rb
Expand Up @@ -4,7 +4,7 @@
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.4"
version "4.0.6"
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)
recipe "postgresql", "Includes postgresql::client"
Expand All @@ -14,7 +14,7 @@
recipe "postgresql::server_redhat", "Installs postgresql server packages, redhat family style"
recipe "postgresql::server_debian", "Installs postgresql server packages, debian family style"

supports "ubuntu", "<= 15.10"
supports "ubuntu", "<= 16.04"

%w{debian fedora suse opensuse amazon}.each do |os|
supports os
Expand Down
2 changes: 1 addition & 1 deletion recipes/apt_pgdg_postgresql.rb
@@ -1,4 +1,4 @@
if not %w(jessie squeeze wheezy sid lucid precise saucy trusty utopic wily).include? node['postgresql']['pgdg']['release_apt_codename']
if not %w(jessie squeeze wheezy sid lucid precise saucy trusty utopic wily xenial).include? node['postgresql']['pgdg']['release_apt_codename']
raise "Not supported release by PGDG apt repository"
end

Expand Down