summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2020-05-31 00:06:13 -0400
committerrsiddharth <s@ricketyspace.net>2020-05-31 00:09:18 -0400
commit342b4341a82d463e22d595126722b5e6d7346127 (patch)
tree4b1f28b9c4f828a43f244f83a2f45b19117e81f3
parent4db5df4958c66f3645dd79323c577f13b69c73b8 (diff)
acmens.py: Update main.
-rw-r--r--acmens.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/acmens.py b/acmens.py
index 25f06a7..23184a2 100644
--- a/acmens.py
+++ b/acmens.py
@@ -351,12 +351,12 @@ $ openssl genrsa -aes256 4096 > user.key
$ openssl rsa -in user.key -pubout > user.pub
$ openssl genrsa -aes256 4096 > domain.key
$ openssl req -new -sha256 -key domain.key -subj "/CN=example.com" > domain.csr
-$ python3 acmens.py --account-key user.key --email user@example.com --csr domain.csr > signed.crt
+$ acmens --account-key user.key --email user@example.com --csr domain.csr > signed.crt
--------------
Example: Revoking a signed certificate:
--------------
-$ python3 acmens.py --revoke --account-key user.key --crt domain.crt
+$ acmens --revoke --account-key user.key --crt domain.crt
--------------
""");
parser.add_argument("--revoke", action="store_true", help="Revoke a signed certificate")