Adjust booleans in system modules (#5153)

* Adjust booleans in system modules.

* Fix some IP addresses

Co-authored-by: Sandra McCann <samccann@redhat.com>

Co-authored-by: Sandra McCann <samccann@redhat.com>
This commit is contained in:
Felix Fontein 2022-08-24 19:59:01 +02:00 committed by GitHub
parent bcecf2dcdc
commit be2de15c66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 162 additions and 146 deletions

View file

@ -24,18 +24,20 @@ options:
description:
- Specifies whether the file system is to be processed by the accounting subsystem.
type: bool
default: no
default: false
attributes:
description:
- Specifies attributes for files system separated by comma.
type: list
elements: str
default: agblksize='4096',isnapshot='no'
default:
- agblksize='4096'
- isnapshot='no'
auto_mount:
description:
- File system is automatically mounted at system restart.
type: bool
default: yes
default: true
device:
description:
- Logical volume (LV) device name or remote export device to create a NFS file system.
@ -70,7 +72,7 @@ options:
description:
- Removes the mount point directory when used with state C(absent).
type: bool
default: no
default: false
size:
description:
- Specifies the file system size.
@ -149,13 +151,13 @@ EXAMPLES = r'''
- name: Remove NFS filesystem /home/ftp.
community.general.aix_filesystem:
filesystem: /home/ftp
rm_mount_point: yes
rm_mount_point: true
state: absent
- name: Remove /newfs.
community.general.aix_filesystem:
filesystem: /newfs
rm_mount_point: yes
rm_mount_point: true
state: absent
'''