Update the poise and postgresql cookbooks
This commit is contained in:
@@ -4,6 +4,10 @@ This file is used to list changes made in the last 3 major versions of the postg
|
||||
|
||||
## Unreleased
|
||||
|
||||
## v7.1.4 (28-03-2019)
|
||||
|
||||
- Fix installation of extensions.
|
||||
|
||||
## v7.1.3 (15-01-2019)
|
||||
|
||||
- Added support for dash in database role name.
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
# PostgreSQL cookbook
|
||||
|
||||
[](https://circleci.com/gh/sous-chefs/postgresql/tree/master) [](https://supermarket.chef.io/cookbooks/postgresql) [](https://pullreminders.com?ref=badge)
|
||||
[](https://supermarket.chef.io/cookbooks/postgresql)
|
||||
[](https://circleci.com/gh/sous-chefs/postgresql)
|
||||
[](https://pullreminders.com?ref=badge)
|
||||
|
||||
Installs and configures PostgreSQL as a client or a server.
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ module PostgresqlCookbook
|
||||
if new_resource.version
|
||||
version_result.stdout == new_resource.version
|
||||
else
|
||||
!version_result.stdout.nil?
|
||||
!version_result.stdout.chomp.empty?
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@ maintainer_email 'help@sous-chefs.org'
|
||||
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 '7.1.3'
|
||||
version '7.1.4'
|
||||
source_url 'https://github.com/sous-chefs/postgresql'
|
||||
issues_url 'https://github.com/sous-chefs/postgresql/issues'
|
||||
chef_version '>= 13.8'
|
||||
|
||||
Reference in New Issue
Block a user