adjust shm size check for postgres servers

This commit is contained in:
Kevin Fenzi 2018-04-06 05:26:20 +00:00
parent 0bb668f2df
commit 52c43d2148

View file

@ -643,3 +643,7 @@ SCRIPTWHITELIST=/usr/bin/groups
SCRIPTWHITELIST=/usr/bin/GET
SCRIPTWHITELIST=/sbin/ifup
SCRIPTWHITELIST=/sbin/ifdown
{% if inventory_hostname in groups['dbservers'] or ansible_hostname.startswith(('pagure', 'retrace', 'anitya', 'upstream')) %}
# Set this size very large on postgres running servers.
IPC_SEG_SIZE=100000000000
{% endif %}