sysctl module: fixed issue when checks_after fail on comparing keys with values separated by white strings
This commit is contained in:
parent
a9dfc40c51
commit
a6096018dc
1 changed files with 1 additions and 0 deletions
1
sysctl
1
sysctl
|
@ -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']):
|
||||
|
|
Loading…
Reference in a new issue