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:
parent
c7762098ec
commit
39a46aced6
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user