10 lines
248 B
YAML
10 lines
248 B
YAML
---
|
|
|
|
- name: Install acme.sh
|
|
ansible.builtin.shell:
|
|
cmd: |
|
|
set -o pipefail
|
|
curl https://get.acme.sh | INSTALLONLINE=1 LE_WORKING_DIR=/etc/x509 sh # noqa: command-instead-of-module
|
|
executable: /bin/bash
|
|
creates: /etc/x509
|