From e664eed6cbda95684653b4b13a6430a36cbfd79c Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 20 Nov 2022 16:14:32 +0800 Subject: Add expand ssl certs command. --- tool/aio.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tool/aio.py') diff --git a/tool/aio.py b/tool/aio.py index b690b3e..3f3ab69 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -51,6 +51,8 @@ certbot_command_group = certbot_parser.add_mutually_exclusive_group() certbot_command_group.add_argument( "-C", "--create", action="store_true", default=False, help="Only print the command for 'create' action.") +certbot_command_group.add_argument( + "-E", "--expand", action="store_true", default=False, help="Only print the command for 'expand' action.") certbot_command_group.add_argument( "-R", "--renew", action="store_true", default=False, help="Only print the command for 'renew' action.") @@ -156,6 +158,10 @@ if args.action == 'certbot': console.print(certbot_command_gen(domain, "create", test=is_test), soft_wrap=True, highlight=False) exit(0) + elif args.expand: + console.print(certbot_command_gen(domain, "expand", + test=is_test), soft_wrap=True, highlight=False) + exit(0) elif args.renew: console.print(certbot_command_gen(domain, "renew", test=is_test), soft_wrap=True, highlight=False) -- cgit v1.2.3