Skip to content

Commit

Permalink
Merge pull request #161 from sircubbi/bugfix_postgresql_password
Browse files Browse the repository at this point in the history
Bugfix: fix deprecated use of postgresql_password()
  • Loading branch information
ju5t authored Sep 7, 2023
2 parents 6f8b4d3 + 31f9405 commit 4ae2162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/backends/postgresql.pp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
if $powerdns::backend_create_tables {
$password_hash = $db_password ? {
Undef => undef,
default => postgresql_password($powerdns::db_username, $_db_password),
default => postgresql::postgresql_password($powerdns::db_username, $_db_password),
}
postgresql::server::db { $powerdns::db_name:
user => $powerdns::db_username,
Expand Down

0 comments on commit 4ae2162

Please sign in to comment.