2 Commits

Author SHA1 Message Date
c55e4199e8 fix: postgresql conf quotes
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-02-22 22:28:21 +01:00
fde6b4b621 fix: override execstart
Some checks failed
Continuous Delivery / build_n_upload (push) Has been cancelled
2026-02-22 21:58:30 +01:00
2 changed files with 4 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Change pg_hba location # Change pg_hba location
hba_file = "/etc/postgres/pg_hba.conf" hba_file = '/etc/postgres/pg_hba.conf'
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
@@ -16,7 +16,7 @@ hba_file = "/etc/postgres/pg_hba.conf"
# Empty listen addresses to disable listening via TCP/IP # Empty listen addresses to disable listening via TCP/IP
# because we want only uni socket connections # because we want only uni socket connections
listen_addresses = "" listen_addresses = ''
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
@@ -26,4 +26,4 @@ listen_addresses = ""
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Redirect logs to stderr to be managed by journald # Redirect logs to stderr to be managed by journald
log_destination = "stderr" log_destination = 'stderr'

View File

@@ -1,2 +1,3 @@
[Service] [Service]
ExecStart=
ExecStart=/usr/bin/postgres -D ${PGDATA} -c config_file=/etc/postgres/postgresql.conf ExecStart=/usr/bin/postgres -D ${PGDATA} -c config_file=/etc/postgres/postgresql.conf