mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +00:00
[PR #11540/137f5444 backport][stable-12] aix_*: deprecation (#11550)
aix_*: deprecation (#11540)
* aix_*: deprecation
* add changelog frag
* update chglog
* adjustments from review
* typo
* wordsmithing from review
(cherry picked from commit 137f5444e3)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
parent
eae5987be1
commit
5cb4632c15
7 changed files with 56 additions and 0 deletions
6
changelogs/fragments/11540-deprecate-aix.yml
Normal file
6
changelogs/fragments/11540-deprecate-aix.yml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
deprecated_features:
|
||||||
|
- aix_devices - module is superseded by equivalent in ``ibm.power_aix`` collection. It will be removed from community.general 15.0.0 (https://github.com/ansible-collections/community.general/issues/11290, https://github.com/ansible-collections/community.general/pull/11540).
|
||||||
|
- aix_filesystem - module is superseded by equivalent in ``ibm.power_aix`` collection. It will be removed from community.general 15.0.0 (https://github.com/ansible-collections/community.general/issues/11290, https://github.com/ansible-collections/community.general/pull/11540).
|
||||||
|
- aix_inittab - module is superseded by equivalent in ``ibm.power_aix`` collection. It will be removed from community.general 15.0.0 (https://github.com/ansible-collections/community.general/issues/11290, https://github.com/ansible-collections/community.general/pull/11540).
|
||||||
|
- aix_lvg - module is superseded by equivalent in ``ibm.power_aix`` collection. It will be removed from community.general 15.0.0 (https://github.com/ansible-collections/community.general/issues/11290, https://github.com/ansible-collections/community.general/pull/11540).
|
||||||
|
- aix_lvol - module is superseded by equivalent in ``ibm.power_aix`` collection. It will be removed from community.general 15.0.0 (https://github.com/ansible-collections/community.general/issues/11290, https://github.com/ansible-collections/community.general/pull/11540).
|
||||||
|
|
@ -371,6 +371,26 @@ plugin_routing:
|
||||||
tombstone:
|
tombstone:
|
||||||
removal_version: 3.0.0
|
removal_version: 3.0.0
|
||||||
warning_text: Use community.general.hpilo_info instead.
|
warning_text: Use community.general.hpilo_info instead.
|
||||||
|
aix_devices:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 15.0.0
|
||||||
|
warning_text: Use ibm.power_aix.devices instead. The C(ibm.power_aix) collection is actively maintained by IBM.
|
||||||
|
aix_filesystem:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 15.0.0
|
||||||
|
warning_text: Use ibm.power_aix.filesystem instead. The C(ibm.power_aix) collection is actively maintained by IBM.
|
||||||
|
aix_inittab:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 15.0.0
|
||||||
|
warning_text: Use ibm.power_aix.inittab instead. The C(ibm.power_aix) collection is actively maintained by IBM.
|
||||||
|
aix_lvg:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 15.0.0
|
||||||
|
warning_text: Use ibm.power_aix.lvg instead. The C(ibm.power_aix) collection is actively maintained by IBM.
|
||||||
|
aix_lvol:
|
||||||
|
deprecation:
|
||||||
|
removal_version: 15.0.0
|
||||||
|
warning_text: Use ibm.power_aix.lvol instead. The C(ibm.power_aix) collection is actively maintained by IBM.
|
||||||
idrac_firmware:
|
idrac_firmware:
|
||||||
redirect: dellemc.openmanage.idrac_firmware
|
redirect: dellemc.openmanage.idrac_firmware
|
||||||
idrac_redfish_facts:
|
idrac_redfish_facts:
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,12 @@ module: aix_devices
|
||||||
short_description: Manages AIX devices
|
short_description: Manages AIX devices
|
||||||
description:
|
description:
|
||||||
- This module discovers, defines, removes and modifies attributes of AIX devices.
|
- This module discovers, defines, removes and modifies attributes of AIX devices.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 15.0.0
|
||||||
|
why: The module is not actively maintained.
|
||||||
|
alternative: >-
|
||||||
|
Use C(ibm.power_aix.devices) instead.
|
||||||
|
See U(https://ibm.github.io/ansible-power-aix/modules/devices.html) for details.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,12 @@ short_description: Configure LVM and NFS file systems for AIX
|
||||||
description:
|
description:
|
||||||
- This module creates, removes, mount and unmount LVM and NFS file system for AIX using C(/etc/filesystems).
|
- This module creates, removes, mount and unmount LVM and NFS file system for AIX using C(/etc/filesystems).
|
||||||
- For LVM file systems is possible to resize a file system.
|
- For LVM file systems is possible to resize a file system.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 15.0.0
|
||||||
|
why: The module is not actively maintained.
|
||||||
|
alternative: >-
|
||||||
|
Use C(ibm.power_aix.filesystem) instead.
|
||||||
|
See U(https://ibm.github.io/ansible-power-aix/modules/filesystem.html) for details.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,12 @@ module: aix_inittab
|
||||||
short_description: Manages the C(inittab) on AIX
|
short_description: Manages the C(inittab) on AIX
|
||||||
description:
|
description:
|
||||||
- Manages the C(inittab) on AIX.
|
- Manages the C(inittab) on AIX.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 15.0.0
|
||||||
|
why: The module is not actively maintained.
|
||||||
|
alternative: >-
|
||||||
|
Use C(ibm.power_aix.inittab) instead.
|
||||||
|
See U(https://ibm.github.io/ansible-power-aix/modules/inittab.html) for details.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,12 @@ module: aix_lvg
|
||||||
short_description: Manage LVM volume groups on AIX
|
short_description: Manage LVM volume groups on AIX
|
||||||
description:
|
description:
|
||||||
- This module creates, removes or resize volume groups on AIX LVM.
|
- This module creates, removes or resize volume groups on AIX LVM.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 15.0.0
|
||||||
|
why: The module is not actively maintained.
|
||||||
|
alternative: >-
|
||||||
|
Use C(ibm.power_aix.lvg) instead.
|
||||||
|
See U(https://ibm.github.io/ansible-power-aix/modules/lvg.html) for details.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,12 @@ module: aix_lvol
|
||||||
short_description: Configure AIX LVM logical volumes
|
short_description: Configure AIX LVM logical volumes
|
||||||
description:
|
description:
|
||||||
- This module creates, removes or resizes AIX logical volumes. Inspired by M(community.general.lvol) module.
|
- This module creates, removes or resizes AIX logical volumes. Inspired by M(community.general.lvol) module.
|
||||||
|
deprecated:
|
||||||
|
removed_in: 15.0.0
|
||||||
|
why: The module is not actively maintained.
|
||||||
|
alternative: >-
|
||||||
|
Use C(ibm.power_aix.lvol) instead.
|
||||||
|
See U(https://ibm.github.io/ansible-power-aix/modules/lvol.html) for details.
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue