Fix comments referencing acme.me instead of acme.sh

This commit is contained in:
Nick Janetakis 2018-09-29 19:06:30 -04:00
parent e7d8204c83
commit f784b8b8e9
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ acme_sh_git_update: False
# Where will this repo get cloned to?
acme_sh_git_clone_dest: "/usr/local/src/acme.sh"
# When enabled, acme.me will upgrade itself to the latest version which is
# When enabled, acme.sh will upgrade itself to the latest version which is
# separate from updating the git repo. That's because acme.sh installs itself
# with an installer after cloning the source code.
#

View File

@ -15,12 +15,12 @@
shell: "/bin/bash"
post_tasks:
- name: Ensure acme.me was cloned
- name: Ensure acme.sh was cloned
command: test -d /usr/local/src/acme.sh
register: result_cloned
changed_when: result_cloned.rc != 0
- name: Ensure acme.me was installed
- name: Ensure acme.sh was installed
command: ./acme.sh --version
args:
chdir: "~/.acme.sh"