From 2fc7baecf8620adba9f46e4d4566f1d2bf1a0a9f Mon Sep 17 00:00:00 2001 From: Alexei Znamensky <103110+russoz@users.noreply.github.com> Date: Thu, 22 Dec 2022 18:54:02 +1300 Subject: [PATCH] xfconf: prune deprecated facts-generating code (more of it) (#5719) * xfconf: prune deprecated facts-generatin code (more of it) * add changelog fragment --- changelogs/fragments/5719-xfconf-facts-deprecation.yml | 6 ++++++ plugins/modules/xfconf.py | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 changelogs/fragments/5719-xfconf-facts-deprecation.yml diff --git a/changelogs/fragments/5719-xfconf-facts-deprecation.yml b/changelogs/fragments/5719-xfconf-facts-deprecation.yml new file mode 100644 index 0000000000..353c0f3730 --- /dev/null +++ b/changelogs/fragments/5719-xfconf-facts-deprecation.yml @@ -0,0 +1,6 @@ +removed_features: + - > + xfconf - generating facts was deprecated in community.general 3.0.0, + however three factoids, ``property``, ``channel`` and ``value`` continued to be generated by mistake. + This behaviour has been removed and ``xfconf`` generate no facts whatsoever + (https://github.com/ansible-collections/community.general/pull/5502). diff --git a/plugins/modules/xfconf.py b/plugins/modules/xfconf.py index 6776ef888e..ec00763ee1 100644 --- a/plugins/modules/xfconf.py +++ b/plugins/modules/xfconf.py @@ -172,7 +172,6 @@ class XFConfProperty(StateModuleHelper): change_params = 'value', diff_params = 'value', output_params = ('property', 'channel', 'value') - facts_params = ('property', 'channel', 'value') module = dict( argument_spec=dict( state=dict(type='str', choices=("present", "absent"), default="present"),