Override Unit systemd with OMkill less

This commit is contained in:
Eric Morino 2020-03-09 17:59:17 +01:00
parent ac98aa2d18
commit 0bda633b0c
2 changed files with 28 additions and 0 deletions

View File

@ -1,4 +1,13 @@
--- ---
- name: Override PostgreSQL systemd unit
template:
src: postgresql.service.j2
dest: /etc/systemd/system/multi-user.target.wants/postgresql.service
force: yes
notify:
- reload systemd
- restart postgresql
- name: Allow conf.d/*.conf files to be included in PostgreSQL configuration - name: Allow conf.d/*.conf files to be included in PostgreSQL configuration
lineinfile: lineinfile:
name: "/etc/postgresql/{{postgresql_version}}/main/postgresql.conf" name: "/etc/postgresql/{{postgresql_version}}/main/postgresql.conf"

View File

@ -0,0 +1,19 @@
# systemd service for managing all PostgreSQL clusters on the system. This
# service is actually a systemd target, but we are using a service since
# targets cannot be reloaded.
[Unit]
Description=PostgreSQL RDBMS
[Service]
OOMScoreAdjust=-1000
Environment=PG_OOM_ADJUST_FILE=/proc/self/oom_score_adj
Environment=PG_MASTER_OOM_SCORE_ADJ=-1000
Environment=PG_CHILD_OOM_SCORE_ADJ=0
Type=oneshot
ExecStart=/bin/true
ExecReload=/bin/true
RemainAfterExit=on
[Install]
WantedBy=multi-user.target