option is marked as required but specifies a default (#57257)
* required and default are conflicting
This commit is contained in:
parent
229d20b6d9
commit
05e6339c49
2 changed files with 3 additions and 4 deletions
|
@ -34,7 +34,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Safeguard boolean. Set to true if you're sure you want to reboot.
|
- Safeguard boolean. Set to true if you're sure you want to reboot.
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
required: true
|
||||||
save_config:
|
save_config:
|
||||||
description:
|
description:
|
||||||
- Flag indicating whether to save the configuration.
|
- Flag indicating whether to save the configuration.
|
||||||
|
@ -134,8 +134,8 @@ def main():
|
||||||
""" main """
|
""" main """
|
||||||
|
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
confirm=dict(required=True, type='bool', default='false'),
|
confirm=dict(required=True, type='bool'),
|
||||||
save_config=dict(required=False, type='bool', default='false')
|
save_config=dict(default=False, type='bool')
|
||||||
)
|
)
|
||||||
|
|
||||||
argument_spec.update(ce_argument_spec)
|
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_ntp_auth.py E322
|
||||||
lib/ansible/modules/network/cloudengine/ce_ospf.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_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_reboot.py E322
|
||||||
lib/ansible/modules/network/cloudengine/ce_rollback.py E322
|
lib/ansible/modules/network/cloudengine/ce_rollback.py E322
|
||||||
lib/ansible/modules/network/cloudengine/ce_sflow.py E322
|
lib/ansible/modules/network/cloudengine/ce_sflow.py E322
|
||||||
|
|
Loading…
Reference in a new issue