From 50bcd951055d7599ec340b4dea80a3a5d11dd9b0 Mon Sep 17 00:00:00 2001 From: Beni Ruef Date: Thu, 10 Dec 2020 11:45:32 +0100 Subject: [PATCH] [type/__postgres_conf] Remove faulty quotes --- cdist/conf/type/__postgres_conf/gencode-remote | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/conf/type/__postgres_conf/gencode-remote b/cdist/conf/type/__postgres_conf/gencode-remote index e25514d0..8ccb3b42 100755 --- a/cdist/conf/type/__postgres_conf/gencode-remote +++ b/cdist/conf/type/__postgres_conf/gencode-remote @@ -45,7 +45,7 @@ fi if [ "${state_should}" = 'present' ] then - set_command="ALTER SYSTEM SET ${conf_name} = '${conf_value}'" + set_command="ALTER SYSTEM SET ${conf_name} = ${conf_value}" else set_command="ALTER SYSTEM SET ${conf_name} = DEFAULT" fi