Skip to content

Commit bfcf1f5

Browse files
committed
Fixed compatibility w/ puppetlabs-postgresql 5.0.0
1 parent f2f9a89 commit bfcf1f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

manifests/params.pp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# The remaining database settings are not used for an embedded database
2424
$database_host = 'localhost'
25-
$database_port = '5432'
25+
$database_port = 5432
2626
$database_name = 'puppetdb'
2727
$database_username = 'puppetdb'
2828
$database_password = 'puppetdb'
@@ -48,7 +48,7 @@
4848
# These settings are for the read database
4949
$read_database = 'postgres'
5050
$read_database_host = undef
51-
$read_database_port = '5432'
51+
$read_database_port = 5432
5252
$read_database_name = 'puppetdb'
5353
$read_database_username = 'puppetdb'
5454
$read_database_password = 'puppetdb'

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
},
7979
{
8080
"name": "puppetlabs/postgresql",
81-
"version_requirement": ">= 4.0.0 <5.0.0"
81+
"version_requirement": ">= 4.0.0 <6.0.0"
8282
},
8383
{
8484
"name": "puppetlabs/firewall",

0 commit comments

Comments
 (0)