[type/__postgres_conf] Remove faulty quotes

This commit is contained in:
Beni Ruef 2020-12-10 11:45:32 +01:00 committed by Dennis Camera
parent 534d5f6bb5
commit 50bcd95105
1 changed files with 1 additions and 1 deletions

View File

@ -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