mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
more curses updates
This commit is contained in:
parent
215c305842
commit
931ca5701e
1 changed files with 8 additions and 2 deletions
|
|
@ -259,9 +259,15 @@ def authenticate():
|
|||
if r.success.chain:
|
||||
with open(chain_file, "w") as f:
|
||||
f.write(r.success.chain)
|
||||
print "Server issued certificate; certificate written to " + cert_file
|
||||
if curses:
|
||||
shower.add("Server issued certificate; certificate written to " + cert_file)
|
||||
else:
|
||||
print "Server issued certificate; certificate written to " + cert_file
|
||||
if r.success.chain:
|
||||
print "Cert chain written to " + chain_file
|
||||
if curses:
|
||||
shower.add("Cert chain written to " + chain_file)
|
||||
else:
|
||||
print "Cert chain written to " + chain_file
|
||||
# TODO: Uncomment the following assignment when the server
|
||||
# presents a valid chain
|
||||
#cert_chain_abspath = os.path.abspath(chain_file)
|
||||
|
|
|
|||
Loading…
Reference in a new issue