From ef7224c4b477416fa7764e378486391b6e307230 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibaut=20Barr=C3=A8re?= Date: Wed, 7 Aug 2019 15:12:21 +0200 Subject: [PATCH] Fix Ansible 2.8 warning (#218) See https://docs.ansible.com/ansible/latest/porting_guides/porting_guide_2.8.html#module-option-conversion-to-string --- tasks/install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install.yml b/tasks/install.yml index b9390547..1e7f2ab4 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -2,7 +2,7 @@ - name: enable overcommit in sysctl sysctl: name: vm.overcommit_memory - value: 1 + value: "1" state: present reload: yes ignoreerrors: yes