Move --days from the install task to the issue task.

The acme.sh install task does not use the --days argument. The issue
task does. Perhaps th renew task does as well.

Slight change in wording to avoid a single apostrophe which was
causing emacs to syntax highlight incorrectly.
This commit is contained in:
Dorab Patel 2019-08-04 18:41:09 -07:00
parent f784b8b8e9
commit 787d54616b
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,6 @@
- name: Install acme.sh
command: >-
./acme.sh --install --log
--days {{ acme_sh_renew_time_in_days }}
{{ "--accountemail " + acme_sh_account_email if acme_sh_account_email else "" }}
args:
chdir: "{{ acme_sh_git_clone_dest }}"
@ -109,7 +108,7 @@
- item.remove is defined and item.remove
- not acme_sh_uninstall
- name: Remove acme.sh's cloned source code, installation path and log files
- name: Remove the acme.sh cloned source code, installation path and log files
file:
path: "{{ item }}"
state: "absent"
@ -140,6 +139,7 @@
./acme.sh --issue -d {{ item.domains | join(" -d ") }}
--dns {{ item.dns_provider | default(acme_sh_default_dns_provider) }}
--dnssleep {{ item.dns_sleep | default(acme_sh_default_dns_sleep) }}
--days {{ acme_sh_renew_time_in_days }}
{{ "--force" if item.force_issue | default(acme_sh_default_force_issue) else "" }}
{{ "--staging" if item.staging | default(acme_sh_default_staging) else "" }}
{{ "--debug" if item.debug | default(acme_sh_default_debug) else "" }}