postgresql: fix behaviour inconsistency in stx
[pti/rtp.git] / meta-stx / recipes-extended / postgresql / postgresql / postgresql.service.update
diff --git a/meta-stx/recipes-extended/postgresql/postgresql/postgresql.service.update b/meta-stx/recipes-extended/postgresql/postgresql/postgresql.service.update
new file mode 100644 (file)
index 0000000..9fe8b51
--- /dev/null
@@ -0,0 +1,29 @@
+[Unit]
+Description=PostgreSQL database server
+After=network.target
+
+[Service]
+Type=forking
+User=postgres
+Group=postgres
+
+# Port number for server to listen on
+Environment=PGPORT=5432
+
+# Location of database directory
+Environment=PGDATA=/var/lib/postgresql/19.12
+
+# Disable OOM kill on the postmaster
+OOMScoreAdjust=-17
+
+PermissionsStartOnly=true
+ExecStart=/usr/bin/pg_ctl start -D ${PGDATA} -s -o "-p ${PGPORT}" -w -t 300
+ExecStop=/usr/bin/pg_ctl stop -D ${PGDATA} -s -m fast
+ExecReload=/usr/bin/pg_ctl reload -D ${PGDATA} -s
+
+# Give a reasonable amount of time for the server to start up/shut down
+TimeoutSec=300
+
+[Install]
+WantedBy=multi-user.target
+""