From f432819c1e57ce9201e3ca9cf549d0037a09c006 Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=C3=A9bastien=20Han?= Date: Wed, 14 Mar 2018 23:41:53 +0100 Subject: [PATCH] osd: apply systcl right away MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Without sysctl_set: yes the sysctm tuning will only get applied on the systctl.conf but not on the fly. Signed-off-by: Sébastien Han --- roles/ceph-osd/tasks/system_tuning.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/ceph-osd/tasks/system_tuning.yml b/roles/ceph-osd/tasks/system_tuning.yml index 7431b3cf1..f9663cce6 100644 --- a/roles/ceph-osd/tasks/system_tuning.yml +++ b/roles/ceph-osd/tasks/system_tuning.yml @@ -59,5 +59,6 @@ value: "{{ item.value }}" state: present sysctl_file: /etc/sysctl.d/ceph-tuning.conf + sysctl_set: yes ignoreerrors: yes with_items: "{{ os_tuning_params }}" -- 2.39.5