Adjust booleans in system modules (#5153) (#5178)

* 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>
(cherry picked from commit be2de15c66)
This commit is contained in:
Felix Fontein
2022-08-24 20:46:48 +02:00
committed by GitHub
parent 1b2fbd72de
commit 5657889b28
39 changed files with 162 additions and 146 deletions

View File

@@ -22,32 +22,32 @@ options:
description:
- Backup encrypted files.
type: bool
default: "yes"
default: true
backup_dmapi_fs:
description:
- Back up DMAPI filesystem files.
type: bool
default: "yes"
default: true
create_map_files:
description:
- Creates a new MAP files.
type: bool
default: "no"
default: false
exclude_files:
description:
- Excludes files using C(/etc/rootvg.exclude).
type: bool
default: "no"
default: false
exclude_wpar_files:
description:
- Excludes WPAR files.
type: bool
default: "no"
default: false
extended_attrs:
description:
- Backup extended attributes.
type: bool
default: "yes"
default: true
name:
type: str
description:
@@ -57,13 +57,13 @@ options:
description:
- Creates a new file data.
type: bool
default: "yes"
default: true
software_packing:
description:
- Exclude files from packing option listed in
C(/etc/exclude_packing.rootvg).
type: bool
default: "no"
default: false
storage_path:
type: str
description:
@@ -73,7 +73,7 @@ options:
description:
- Creates backup using snapshots.
type: bool
default: "no"
default: false
'''
EXAMPLES = '''
@@ -81,8 +81,8 @@ EXAMPLES = '''
community.general.mksysb:
name: myserver
storage_path: /repository/images
exclude_files: yes
exclude_wpar_files: yes
exclude_files: true
exclude_wpar_files: true
'''
RETURN = '''