summaryrefslogtreecommitdiff
path: root/openstack/etc/systemd/system/postgres-server.service
diff options
context:
space:
mode:
authorFrancisco Redondo Marchena <francisco.marchena@codethink.co.uk>2015-03-16 15:12:14 +0000
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2015-03-16 17:36:03 +0000
commit46ea33a2fe458a5970332db03da0afe381149c6a (patch)
treef157de1b2ac48f1bb62eda58d74d55702243db5d /openstack/etc/systemd/system/postgres-server.service
parenta4ded4f7310eeb4fb097c204898de7507d7f2814 (diff)
downloaddefinitions-baserock/pedroalvarez/openstack-ansible-v4.tar.gz
Move systemd units to /usr/lib/systemd/system as defined in systemd documentationbaserock/pedroalvarez/openstack-ansible-v4
See http://www.freedesktop.org/software/systemd/man/systemd.unit.html for more information
Diffstat (limited to 'openstack/etc/systemd/system/postgres-server.service')
-rw-r--r--openstack/etc/systemd/system/postgres-server.service24
1 files changed, 0 insertions, 24 deletions
diff --git a/openstack/etc/systemd/system/postgres-server.service b/openstack/etc/systemd/system/postgres-server.service
deleted file mode 100644
index 42e88042..00000000
--- a/openstack/etc/systemd/system/postgres-server.service
+++ /dev/null
@@ -1,24 +0,0 @@
-[Unit]
-Description=PostgreSQL database server
-
-[Service]
-Type=forking
-TimeoutSec=120
-User=postgres
-Group=postgres
-
-Environment=PGROOT=/var/lib/pgsql
-
-SyslogIdentifier=postgres
-PIDFile=/var/lib/pgsql/data/postmaster.pid
-
-ExecStart= /usr/bin/pg_ctl -s -D ${PGROOT}/data start -w -t 120
-ExecReload=/usr/bin/pg_ctl -s -D ${PGROOT}/data reload
-ExecStop= /usr/bin/pg_ctl -s -D ${PGROOT}/data stop -m fast
-
-# Due to PostgreSQL's use of shared memory, OOM killer is often overzealous in
-# killing Postgres, so adjust it downward
-OOMScoreAdjust=-200
-
-[Install]
-WantedBy=multi-user.target