From d87fbdfffd3c80cbe4bf60cc945cd750385fb9a3 Mon Sep 17 00:00:00 2001 From: Abhishek Varshney Date: Wed, 2 Sep 2015 12:50:03 +0530 Subject: [PATCH] fixing sysctl command to take whitespace-separated multi values for a key --- roles/ceph-common/tasks/misc/system_tuning.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ceph-common/tasks/misc/system_tuning.yml b/roles/ceph-common/tasks/misc/system_tuning.yml index fbd10170b..df025145b 100644 --- a/roles/ceph-common/tasks/misc/system_tuning.yml +++ b/roles/ceph-common/tasks/misc/system_tuning.yml @@ -18,8 +18,8 @@ - name: apply operating system tuning sysctl: > - name={{ item.name }} - value={{ item.value }} + name="{{ item.name }}" + value="{{ item.value }}" state=present sysctl_file=/etc/sysctl.conf ignoreerrors=yes -- 2.39.5