--- - name: Git fetch acme.sh repository ansible.builtin.git: repo: "{{ acme_sh_git_repo }}" dest: "{{ acme_sh_git_folder }}" - name: Install acme.sh ansible.builtin.command: chdir: "{{ acme_sh_git_folder }}" cmd: | /bin/sh acme.sh --install --home {{ acme_sh_home | quote }} --cert-home {{ acme_sh_cert_home | quote }} --config-home {{ acme_sh_config_home | quote }} -m {{ acme_sh_email | quote }} creates: "{{ acme_sh_home }}"