Files
states/linux/VMSwappiness.sls
2018-04-29 20:19:32 +02:00

24 lines
588 B
Plaintext

{% if grains['kernel'] == 'Linux' %}
{% if grains['virtual'] == 'qemu' %}
/etc/sysctl.conf:
file.append:
- makedirs: True
- text: vm.swappiness = 1
{% elif grains['virtual'] == 'LXC' %}
/etc/sysctl.conf:
file.append:
- makedirs: True
- text: vm.swappiness = 5
{% elif grains['os'] == 'Fedora' %}
/etc/sysctl.conf:
file.append:
- makedirs: True
- text: vm.swappiness = 10
{% elif grains['os'] == 'CentOS' %}
/etc/sysctl.conf:
file.append:
- makedirs: True
- text: vm.swappiness = 25
{% endif %}
{% endif %}