From: Abhishek Varshney Date: Wed, 2 Sep 2015 07:20:03 +0000 (+0530) Subject: fixing sysctl command to take whitespace-separated multi values for a key X-Git-Tag: v1.0.0~117^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F398%2Fhead;p=ceph-ansible.git fixing sysctl command to take whitespace-separated multi values for a key --- 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