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
reviewable/pr18780/r1
Maykel Moya 11 years ago
parent 6dedb68bde
commit a96f75c396

@ -188,11 +188,12 @@ def main():
state = module.params['state'] state = module.params['state']
changed = False changed = False
try: if key_id:
_ = int(key_id, 16) try:
key_id = key_id.lstrip('0x') _ = int(key_id, 16)
except ValueError: key_id = key_id.lstrip('0x')
module.fail_json("Invalid key_id") except ValueError:
module.fail_json("Invalid key_id")
# FIXME: I think we have a common facility for this, if not, want # FIXME: I think we have a common facility for this, if not, want
check_missing_binaries(module) check_missing_binaries(module)

Loading…
Cancel
Save