Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
2012-09-19 - Chris Price <chris@puppetlabs.com>
* Fix invalid subname in database.ini (be683b7)

2011-09-18 Chris Price <chris@puppetlabs.com> - 1.0.0
* Initial 1.0.0 release
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'puppetlabs-puppetdb'
version '1.0.0'
version '1.0.1'
source 'git://github.com/puppetlabs-puppet/puppetlabs-puppetdb.git'
author 'Puppet Labs'
description 'PuppetDB resource types'
Expand Down
2 changes: 1 addition & 1 deletion manifests/server/database_ini.pp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
} elsif $database == 'postgres' {
$classname = 'org.postgresql.Driver'
$subprotocol = 'postgresql'
$subname = "//${database_host}:${database_port}/${database}"
$subname = "//${database_host}:${database_port}/${database_name}"

##Only setup for postgres
ini_setting {'puppetdb_psdatabase_username':
Expand Down