1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

sysctl module: fixed issue when checks_after fail on comparing keys with values separated by white strings

This commit is contained in:
lessmian 2013-02-19 15:45:08 +01:00
parent e8254dee4d
commit a124a7f6a1

View file

@ -189,6 +189,7 @@ def sysctl_check(current_step, **sysctl_args):
output = f.read()
f.close()
output = output.strip(' \t\n\r')
output = re.sub(r'\s+', ' ', output)
# multi positive integer values separated by spaces as described in issue #2004 :
if re.search('^([\d\s]+)$', sysctl_args['value']):