Compare exploded values in the sysctl module to avoid whitespace errors

Fixes #3931
pull/4082/merge
James Cammarata 11 years ago
parent b2741f451e
commit 3e9b63febd

@ -195,7 +195,7 @@ def sysctl_check(current_step, **sysctl_args):
output = re.sub('(\s+)', ' ', output)
# normal case, finded value must be equal to the submitted value :
if output != sysctl_args['value']:
if output.split() != sysctl_args['value'].split():
return 1, 'key seems not set to value even after update/sysctl, founded : <%s>, wanted : <%s>' % (output, sysctl_args['value'])
return 0, ''

Loading…
Cancel
Save