bundles/postgresql: fix postgresql config path

This commit is contained in:
Franzi 2021-02-20 16:50:38 +01:00
parent 194de9ef2d
commit 1c0a3ee8e7
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -25,10 +25,10 @@ directories = {
},
# This is needed so the above purge does not remove the version
# currently installed.
'/etc/postgresql/{}'.format(postgresql_version): {
'owner': None,
'group': None,
'mode': None,
'/etc/postgresql/{}/main'.format(postgresql_version): {
'owner': 'postgres',
'group': 'postgres',
'mode': '0755',
},
}