apt_key: fix spurious failure to import a subkey (#4366)

Importing a (sign only) subkey with apt_key module always fails,
however the actual keyring gets created and contains the correct keys.
Apparently the all_keys function skips the subkeys, hence the problem.

Fixes #4365
This commit is contained in:
Alexey Sheplyakov 2016-08-16 16:01:07 +00:00 committed by René Moser
parent 997fa3b2b7
commit 5f1ac88414

View file

@ -132,7 +132,7 @@ def all_keys(module, keyring, short_format):
results = []
lines = out.split('\n')
for line in lines:
if line.startswith("pub"):
if line.startswith("pub") or line.startswith("sub"):
tokens = line.split()
code = tokens[1]
(len_type, real_code) = code.split("/")