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

Add attributes to aix and ibm modules (#5959)

Add attributes to aix and ibm modules.
This commit is contained in:
Felix Fontein 2023-02-24 09:24:13 +01:00 committed by GitHub
parent 1f1ae558f9
commit 5b9ee78610
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 86 additions and 14 deletions

View file

@ -16,6 +16,13 @@ module: aix_devices
short_description: Manages AIX devices
description:
- This module discovers, defines, removes and modifies attributes of AIX devices.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
attributes:
description:

View file

@ -19,6 +19,13 @@ description:
- 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.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
account_subsystem:
description:

View file

@ -11,11 +11,18 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
author:
- Joris Weijters (@molekuul)
- Joris Weijters (@molekuul)
module: aix_inittab
short_description: Manages the inittab on AIX
description:
- Manages the inittab on AIX.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
name:
description:

View file

@ -11,11 +11,18 @@ __metaclass__ = type
DOCUMENTATION = r'''
---
author:
- Kairo Araujo (@kairoaraujo)
- Kairo Araujo (@kairoaraujo)
module: aix_lvg
short_description: Manage LVM volume groups on AIX
description:
- This module creates, removes or resize volume groups on AIX LVM.
- This module creates, removes or resize volume groups on AIX LVM.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
force:
description:

View file

@ -17,6 +17,13 @@ module: aix_lvol
short_description: Configure AIX LVM logical volumes
description:
- This module creates, removes or resizes AIX logical volumes. Inspired by lvol module.
extends_documentation_fragment:
- community.general.attributes
attributes:
check_mode:
support: full
diff_mode:
support: none
options:
vg:
description:

View file

@ -18,6 +18,12 @@ short_description: Manages domains on IBM Spectrum Accelerate Family storage sys
description:
- "This module can be used to add domains to or removes them from IBM Spectrum Accelerate Family storage systems."
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
domain:
description:
@ -82,8 +88,8 @@ options:
type: str
extends_documentation_fragment:
- community.general.ibm_storage
- community.general.ibm_storage
- community.general.attributes
author:
- Tzur Eliyahu (@tzure)

View file

@ -18,6 +18,12 @@ short_description: Adds hosts to or removes them from IBM Spectrum Accelerate Fa
description:
- "This module adds hosts to or removes them from IBM Spectrum Accelerate Family storage systems."
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
host:
description:
@ -56,8 +62,8 @@ options:
type: str
extends_documentation_fragment:
- community.general.ibm_storage
- community.general.ibm_storage
- community.general.attributes
author:
- Tzur Eliyahu (@tzure)

View file

@ -19,6 +19,12 @@ description:
- "This module adds ports to or removes them from the hosts
on IBM Spectrum Accelerate Family storage systems."
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
host:
description:
@ -48,7 +54,8 @@ options:
type: str
extends_documentation_fragment:
- community.general.ibm_storage
- community.general.ibm_storage
- community.general.attributes
author:
- Tzur Eliyahu (@tzure)

View file

@ -18,6 +18,12 @@ short_description: Handles pools on IBM Spectrum Accelerate Family storage syste
description:
- "This module creates or deletes pools to be used on IBM Spectrum Accelerate Family storage systems"
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
pool:
description:
@ -52,8 +58,8 @@ options:
type: str
extends_documentation_fragment:
- community.general.ibm_storage
- community.general.ibm_storage
- community.general.attributes
author:
- Tzur Eliyahu (@tzure)

View file

@ -18,6 +18,12 @@ short_description: Handle volumes on IBM Spectrum Accelerate Family storage syst
description:
- "This module creates or deletes volumes to be used on IBM Spectrum Accelerate Family storage systems."
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
vol:
description:
@ -42,8 +48,8 @@ options:
type: str
extends_documentation_fragment:
- community.general.ibm_storage
- community.general.ibm_storage
- community.general.attributes
author:
- Tzur Eliyahu (@tzure)

View file

@ -19,6 +19,12 @@ description:
- "This module maps volumes to or unmaps them from the hosts on
IBM Spectrum Accelerate Family storage systems."
attributes:
check_mode:
support: none
diff_mode:
support: none
options:
vol:
description:
@ -55,8 +61,8 @@ options:
type: str
extends_documentation_fragment:
- community.general.ibm_storage
- community.general.ibm_storage
- community.general.attributes
author:
- Tzur Eliyahu (@tzure)