mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #6831 from aresch/patch-1
Fix _parse_value always returning 0 when not true, false or None.
This commit is contained in:
commit
2fd6d16f99
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ class SysctlModule(object):
|
||||||
return ''
|
return ''
|
||||||
elif value.lower() in BOOLEANS_TRUE:
|
elif value.lower() in BOOLEANS_TRUE:
|
||||||
return '1'
|
return '1'
|
||||||
elif not value.lower() in BOOLEANS_FALSE:
|
elif value.lower() in BOOLEANS_FALSE:
|
||||||
return '0'
|
return '0'
|
||||||
else:
|
else:
|
||||||
return value.strip()
|
return value.strip()
|
||||||
|
|
Loading…
Reference in a new issue