Fixes #6519 Properly handle state=absent in sysctl module
This commit is contained in:
parent
950c0ebce6
commit
4028f55c04
1 changed files with 4 additions and 0 deletions
|
@ -144,9 +144,13 @@ class SysctlModule(object):
|
|||
if self.file_values[thisname] is None and self.args['state'] == "present":
|
||||
self.changed = True
|
||||
self.write_file = True
|
||||
elif self.file_values[thisname] is None and self.args['state'] == "absent":
|
||||
self.changed = False
|
||||
elif self.file_values[thisname] != self.args['value']:
|
||||
self.changed = True
|
||||
self.write_file = True
|
||||
|
||||
# use the sysctl command or not?
|
||||
if self.args['sysctl_set']:
|
||||
if self.proc_value is None:
|
||||
self.changed = True
|
||||
|
|
Loading…
Reference in a new issue