From f784b8b8e9e64676d41280f8297827deeb613118 Mon Sep 17 00:00:00 2001 From: Nick Janetakis Date: Sat, 29 Sep 2018 19:06:30 -0400 Subject: [PATCH] Fix comments referencing acme.me instead of acme.sh --- README.md | 2 +- tests/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a5e645..f10aaa6 100644 --- a/README.md +++ b/README.md @@ -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. # diff --git a/tests/test.yml b/tests/test.yml index bac19e9..a6b4f42 100644 --- a/tests/test.yml +++ b/tests/test.yml @@ -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"