mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-26 21:33:12 +00:00
* xfconf - state absent was not honoring check_mode (#2185) * state absent was not honoring check_mode * added changelog fragment * adjusted run_command() call for stable-1
This commit is contained in:
2
changelogs/fragments/2185-xfconf-absent-check-mode.yml
Normal file
2
changelogs/fragments/2185-xfconf-absent-check-mode.yml
Normal file
@@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- xfconf - module was not honoring check mode when ``state`` was ``absent`` (https://github.com/ansible-collections/community.general/pull/2185).
|
||||
@@ -219,8 +219,9 @@ class XFConfProperty(CmdMixin, StateMixin, ModuleHelper):
|
||||
self.update_xfconf_output(value=self.vars.value)
|
||||
|
||||
def state_absent(self):
|
||||
if not self.module.check_mode:
|
||||
self.run_command(params=('channel', 'property', 'reset'), extra_params={"reset": True})
|
||||
self.vars.value = None
|
||||
self.run_command(params=('channel', 'property', 'reset'), extra_params={"reset": True})
|
||||
self.update_xfconf_output(previous_value=self.vars.previous_value,
|
||||
value=None)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user