aboutsummaryrefslogtreecommitdiff
path: root/tool/aio.py
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2022-11-19 13:29:17 +0800
committercrupest <crupest@outlook.com>2022-11-19 13:29:17 +0800
commit3a56dce5b7b2d29e053b2e0074b0864c2d778eee (patch)
treed3149dfb8dc0b22d0767c1fe57599c92f01dfff5 /tool/aio.py
parent27e45b2cf4982f4f9ae37b127a1d9db3822e547a (diff)
downloadcrupest-3a56dce5b7b2d29e053b2e0074b0864c2d778eee.tar.gz
crupest-3a56dce5b7b2d29e053b2e0074b0864c2d778eee.tar.bz2
crupest-3a56dce5b7b2d29e053b2e0074b0864c2d778eee.zip
Make it easier to run certbot command. v2.0
Diffstat (limited to 'tool/aio.py')
-rwxr-xr-xtool/aio.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tool/aio.py b/tool/aio.py
index 16358db..6defa99 100755
--- a/tool/aio.py
+++ b/tool/aio.py
@@ -121,10 +121,12 @@ if args.action == 'domain':
elif domain_action == 'certbot':
is_test = args.test
if args.create:
- console.print(certbot_command_gen(domain, "create", test=is_test))
+ console.print(certbot_command_gen(domain, "create",
+ test=is_test), soft_wrap=True, highlight=False)
exit(0)
elif args.renew:
- console.print(certbot_command_gen(domain, "renew", test=is_test))
+ console.print(certbot_command_gen(domain, "renew",
+ test=is_test), soft_wrap=True, highlight=False)
exit(0)
console.print(
"Here is some commands you can use to do certbot related work.")