mirror of
https://github.com/laurivosandi/certidude
synced 2024-12-22 16:25:17 +00:00
cli: Send Accept: application/x-pem-file while downloading CRL
This commit is contained in:
parent
833fb82354
commit
5bdf986b47
@ -46,7 +46,7 @@ def certidude_request_certificate(server, key_path, request_path, certificate_pa
|
||||
os.rename(authority_partial, authority_path)
|
||||
|
||||
# Fetch certificate revocation list
|
||||
r = requests.get(revoked_url, stream=True)
|
||||
r = requests.get(revoked_url, headers={'accept': 'application/x-pem-file'}, stream=True)
|
||||
click.echo("Fetching CRL from %s to %s" % (revoked_url, revocations_path))
|
||||
revocations_partial = tempfile.mktemp(prefix=revocations_path + ".part")
|
||||
with open(revocations_partial, 'wb') as f:
|
||||
|
Loading…
Reference in New Issue
Block a user