mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Fix issue with sysctl parameter parsing introduced by 0e8c7b1
Fixes #6806
This commit is contained in:
@@ -185,9 +185,9 @@ class SysctlModule(object):
|
||||
def _parse_value(self, value):
|
||||
if value is None:
|
||||
return ''
|
||||
elif value.lower():
|
||||
elif value.lower() in BOOLEANS_TRUE:
|
||||
return '1'
|
||||
elif not value.lower():
|
||||
elif not value.lower() in BOOLEANS_FALSE:
|
||||
return '0'
|
||||
else:
|
||||
return value.strip()
|
||||
|
||||
Reference in New Issue
Block a user