Skip to content
Snippets Groups Projects
Commit 884282c7 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Fix Ansible warning on using an integer where a string is expected.

parent afe889c2
No related branches found
No related tags found
No related merge requests found
...@@ -25,9 +25,8 @@ ...@@ -25,9 +25,8 @@
- name: Ensure fs.protected_regular is disabled - name: Ensure fs.protected_regular is disabled
sysctl: sysctl:
name: fs.protected_regular name: fs.protected_regular
value: 0 value: '0'
sysctl_set: yes sysctl_set: yes
state: present state: present
reload: yes reload: yes
when: result.stat.exists when: result.stat.exists
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment