From 0454d540b02629b681e5f77f2b9f216a688fc2e3 Mon Sep 17 00:00:00 2001 From: Concubidated Date: Fri, 24 Mar 2017 12:52:37 -0700 Subject: [PATCH] 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 --- roles/ceph-common/tasks/misc/system_tuning.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }}"