diff --git a/spacewalk/certs-tools/mgr_ssl_cert_setup.py b/spacewalk/certs-tools/mgr_ssl_cert_setup.py index 018d011ebd9..e8d6863ed94 100755 --- a/spacewalk/certs-tools/mgr_ssl_cert_setup.py +++ b/spacewalk/certs-tools/mgr_ssl_cert_setup.py @@ -320,6 +320,8 @@ def getCertData(cert): elif line.startswith(" "): if nextval == "subjectKeyIdentifier": data["subjectKeyIdentifier"] = line.strip().upper() + elif nextval == "authorityKeyIdentifier" and line.startswith(" keyid:"): + data["authorityKeyIdentifier"] = line[10:].strip().upper() elif nextval == "authorityKeyIdentifier" and re.match( r"^\s+[0-9A-Fa-f]{2}:.+$", line ):