From 93c53c72217bbfaed0ffae601b6763105c847588 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20=E2=80=9Csaz=E2=80=9D=20Zieger?= Date: Tue, 14 Jan 2025 11:45:41 +0100 Subject: [PATCH] replace deprecated postgresql_password func with postgresql::postgresql_password --- manifests/postgres.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/postgres.pp b/manifests/postgres.pp index 2e7e40d..bdf251d 100644 --- a/manifests/postgres.pp +++ b/manifests/postgres.pp @@ -385,7 +385,7 @@ if $manage_dbuser { postgresql::server::role { $barman_dbuser: login => true, - password_hash => postgresql_password($barman_dbuser, $real_password), + password_hash => postgresql::postgresql_password($barman_dbuser, $real_password), superuser => true, } }