mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Do key validation only when key is provided
key_id is optional, the previous code didn't handle the case of key_id not specified
This commit is contained in:
parent
6480945184
commit
2592b2c3f9
1 changed files with 6 additions and 5 deletions
|
@ -188,11 +188,12 @@ def main():
|
|||
state = module.params['state']
|
||||
changed = False
|
||||
|
||||
try:
|
||||
_ = int(key_id, 16)
|
||||
key_id = key_id.lstrip('0x')
|
||||
except ValueError:
|
||||
module.fail_json("Invalid key_id")
|
||||
if key_id:
|
||||
try:
|
||||
_ = int(key_id, 16)
|
||||
key_id = key_id.lstrip('0x')
|
||||
except ValueError:
|
||||
module.fail_json("Invalid key_id")
|
||||
|
||||
# FIXME: I think we have a common facility for this, if not, want
|
||||
check_missing_binaries(module)
|
||||
|
|
Loading…
Reference in a new issue