mirror of
https://github.com/roles-ansible/ansible_role_acmetool.git
synced 2024-08-16 12:29:49 +02:00
10 lines
281 B
YAML
10 lines
281 B
YAML
|
---
|
||
|
- name: enable acmetool for acme_domain_list domains
|
||
|
become: true
|
||
|
ansible.builtin.command: "acmetool want {{ _domain.name }}"
|
||
|
args:
|
||
|
creates: "/var/lib/acme/live/{{ _domain.name }}"
|
||
|
with_items: "{{ acme_domain_want_list }}"
|
||
|
loop_control:
|
||
|
loop_var: _domain
|