mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 08:13:08 +00:00
Merge pull request #7022 from jjshoe/patch-1
apt_key lists all keys in uppercase
This commit is contained in:
@@ -210,6 +210,7 @@ def main():
|
||||
_ = int(key_id, 16)
|
||||
if key_id.startswith('0x'):
|
||||
key_id = key_id[2:]
|
||||
key_id = key_id.upper()
|
||||
except ValueError:
|
||||
module.fail_json(msg="Invalid key_id", id=key_id)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user