From: Sébastien Han Date: Wed, 14 Mar 2018 22:41:53 +0000 (+0100) Subject: osd: apply systcl right away X-Git-Tag: v3.1.0beta4~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f432819c1e57ce9201e3ca9cf549d0037a09c006;p=ceph-ansible.git osd: apply systcl right away 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 --- 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 }}"