]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
fixing sysctl command to take whitespace-separated multi values for a key 398/head
authorAbhishek Varshney <abhishek.varshney@flipkart.com>
Wed, 2 Sep 2015 07:20:03 +0000 (12:50 +0530)
committerAbhishek Varshney <abhishek.varshney@flipkart.com>
Wed, 2 Sep 2015 07:20:03 +0000 (12:50 +0530)
roles/ceph-common/tasks/misc/system_tuning.yml

index fbd10170b0563638b097632b0cba9ae665eb8e77..df025145b253533b2975a627385241390d36f6fc 100644 (file)
@@ -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