From: Concubidated Date: Fri, 24 Mar 2017 19:52:37 +0000 (-0700) Subject: ceph-common: update sysctl file location X-Git-Tag: v2.2.0~19^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1394%2Fhead;p=ceph-ansible.git ceph-common: update sysctl file location systctl tuning should be in the sysctl.d directory. This creates a seperation from what values were set specific to ceph, and what values were set by the operator. Signed-off-by: Tyler Brekke --- diff --git a/roles/ceph-common/tasks/misc/system_tuning.yml b/roles/ceph-common/tasks/misc/system_tuning.yml index cef219ec0..4ea82868b 100644 --- a/roles/ceph-common/tasks/misc/system_tuning.yml +++ b/roles/ceph-common/tasks/misc/system_tuning.yml @@ -27,6 +27,6 @@ name: "{{ item.name }}" value: "{{ item.value }}" state: present - sysctl_file: /etc/sysctl.conf + sysctl_file: /etc/sysctl.d/ceph-tuning.conf ignoreerrors: yes with_items: "{{ os_tuning_params }}"