Skip to content

Commit

Permalink
Bugfix: fix deprecated use of postgresql_password()
Browse files Browse the repository at this point in the history
fixes:
Evaluation Error: Error while evaluating a Function Call, deprecation. postgresql_password. This method is deprecated, please use postgresql::postgresql_password instead
  • Loading branch information
sircubbi committed Sep 6, 2023
1 parent 6f8b4d3 commit 31f9405
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 31f9405

Please sign in to comment.