1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

xfconf: prune deprecated facts-generating code (more of it) (#5719)

* xfconf: prune deprecated facts-generatin code (more of it)

* add changelog fragment
This commit is contained in:
Alexei Znamensky 2022-12-22 18:54:02 +13:00 committed by GitHub
parent 488e828f9b
commit 2fc7baecf8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -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).

View file

@ -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"),