diff options
author | James Nylen <jnylen@gmail.com> | 2015-12-16 23:05:32 -0500 |
---|---|---|
committer | James Nylen <jnylen@gmail.com> | 2015-12-16 23:05:32 -0500 |
commit | f53c7b52dd7045ffe6dcd786c042ea8f86fc29eb (patch) | |
tree | 594cc5df6771fafa307f68a737c2a85b888df42f | |
parent | 0effb6afeff9373680ed1714cc193b9594c6b7df (diff) |
Fix documentation text at the end of sign_csr.py too
-rw-r--r-- | sign_csr.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sign_csr.py b/sign_csr.py index 3c80a95..ab20a40 100644 --- a/sign_csr.py +++ b/sign_csr.py @@ -396,7 +396,12 @@ sudo python -c "import BaseHTTPServer; \\ # Step 15: Convert the signed cert from DER to PEM sys.stderr.write("Certificate signed!\n") - sys.stderr.write("You can stop running the python command on your server (Ctrl+C works).\n") + + if file_based: + sys.stderr.write("You can remove the acme-challenge file from your webserver now.\n") + else: + sys.stderr.write("You can stop running the python command on your server (Ctrl+C works).\n") + signed_der64 = base64.b64encode(signed_der) signed_pem = """\ -----BEGIN CERTIFICATE----- |