homeserver/roles/mgrote_disable_oom_killer/handlers/main.yml

6 lines
140 B
YAML
Raw Normal View History

---
- name: disable oom-killer
become: true
ansible.builtin.command: echo 2 > /proc/sys/vm/overcommit_memory # noqa no-changed-when
...