facter: deprecation (#9451)
* facter: deprecation Per https://github.com/ansible-collections/community.general/pull/7356#issuecomment-1752460442 it has been agreed that this module would be replaced with the better named `facter_facts`. * add changelog frag * add deprecation note to the module documentationpull/9452/head
parent
ec585392e5
commit
474546b117
|
@ -0,0 +1,2 @@
|
||||||
|
deprecated_features:
|
||||||
|
- facter - module is deprecated and will be removed in community.general 12.0.0, use ``community.general.facter_facts`` instead (https://github.com/ansible-collections/community.general/pull/9451).
|
|
@ -104,6 +104,10 @@ plugin_routing:
|
||||||
tombstone:
|
tombstone:
|
||||||
removal_version: 10.0.0
|
removal_version: 10.0.0
|
||||||
warning_text: Use community.general.consul_token and/or community.general.consul_policy instead.
|
warning_text: Use community.general.consul_token and/or community.general.consul_policy instead.
|
||||||
|
facter:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 12.0.0
|
||||||
|
warning_text: Use community.general.facter_facts instead.
|
||||||
hipchat:
|
hipchat:
|
||||||
deprecation:
|
deprecation:
|
||||||
removal_version: 11.0.0
|
removal_version: 11.0.0
|
||||||
|
|
|
@ -14,6 +14,10 @@ short_description: Runs the discovery program C(facter) on the remote system
|
||||||
description:
|
description:
|
||||||
- Runs the C(facter) discovery program (U(https://github.com/puppetlabs/facter)) on the remote system, returning JSON data
|
- Runs the C(facter) discovery program (U(https://github.com/puppetlabs/facter)) on the remote system, returning JSON data
|
||||||
that can be useful for inventory purposes.
|
that can be useful for inventory purposes.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 12.0.0
|
||||||
|
why: The module has been replaced by M(community.general.facter_facts).
|
||||||
|
alternative: Use M(community.general.facter_facts) instead.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
Loading…
Reference in New Issue