mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
option is marked as required but specifies a default (#57257)
* required and default are conflicting
This commit is contained in:
committed by
Nathaniel Case
parent
229d20b6d9
commit
05e6339c49
@@ -34,7 +34,7 @@ options:
|
||||
description:
|
||||
- Safeguard boolean. Set to true if you're sure you want to reboot.
|
||||
type: bool
|
||||
default: false
|
||||
required: true
|
||||
save_config:
|
||||
description:
|
||||
- Flag indicating whether to save the configuration.
|
||||
@@ -134,8 +134,8 @@ def main():
|
||||
""" main """
|
||||
|
||||
argument_spec = dict(
|
||||
confirm=dict(required=True, type='bool', default='false'),
|
||||
save_config=dict(required=False, type='bool', default='false')
|
||||
confirm=dict(required=True, type='bool'),
|
||||
save_config=dict(default=False, type='bool')
|
||||
)
|
||||
|
||||
argument_spec.update(ce_argument_spec)
|
||||
|
||||
@@ -450,7 +450,6 @@ lib/ansible/modules/network/cloudengine/ce_ntp.py E322
|
||||
lib/ansible/modules/network/cloudengine/ce_ntp_auth.py E322
|
||||
lib/ansible/modules/network/cloudengine/ce_ospf.py E322
|
||||
lib/ansible/modules/network/cloudengine/ce_ospf_vrf.py E322
|
||||
lib/ansible/modules/network/cloudengine/ce_reboot.py E317
|
||||
lib/ansible/modules/network/cloudengine/ce_reboot.py E322
|
||||
lib/ansible/modules/network/cloudengine/ce_rollback.py E322
|
||||
lib/ansible/modules/network/cloudengine/ce_sflow.py E322
|
||||
|
||||
Reference in New Issue
Block a user