1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-22 17:35:35 +03:00

ukify: Require both key and cert be set in generate_keys

If either is None the write in this branch of the code will fail.

(cherry picked from commit 9ba53499b9)
This commit is contained in:
Jörg Behrmann 2024-10-11 14:34:15 +02:00 committed by Luca Boccassi
parent c7762098ec
commit 39a46aced6

View File

@ -1009,7 +1009,7 @@ def generate_keys(opts):
# This will generate keys and certificates and write them to the paths that
# are specified as input paths.
if opts.sb_key or opts.sb_cert:
if opts.sb_key and opts.sb_cert:
fqdn = socket.getfqdn()
cn = f'SecureBoot signing key on host {fqdn}'
key_pem, cert_pem = generate_key_cert_pair(