diff options
author | crupest <crupest@outlook.com> | 2022-11-20 16:25:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-20 16:25:33 +0800 |
commit | dbc5237dbbb449ac24e4001d6e4e17a178333b46 (patch) | |
tree | 9f1147555f972b5c53fe3e54b47610bc2cf25716 /tool | |
parent | 79bb2c981e427d84b93d880fae5a42216f2f38d1 (diff) | |
download | crupest-dbc5237dbbb449ac24e4001d6e4e17a178333b46.tar.gz crupest-dbc5237dbbb449ac24e4001d6e4e17a178333b46.tar.bz2 crupest-dbc5237dbbb449ac24e4001d6e4e17a178333b46.zip |
Fix nginx acme challenge problem.
Diffstat (limited to 'tool')
-rwxr-xr-x | tool/aio.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/aio.py b/tool/aio.py index 3f3ab69..94e4460 100755 --- a/tool/aio.py +++ b/tool/aio.py @@ -67,7 +67,7 @@ clear_parser.add_argument("-D", "--include-data-dir", action="store_true", args = parser.parse_args() if args.action == "certbot": - if args.create or args.renew: + if args.create or args.renew or args.expand: args.no_hello = True if not args.no_hello: |