1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_acmetool.git synced 2024-08-16 12:29:49 +02:00
ansible_role_acmetool/tasks/want_domains.yml

10 lines
277 B
YAML
Raw Normal View History

2021-09-30 22:07:35 +02:00
---
2022-10-25 22:51:18 +02:00
- name: Enable acmetool for acme_domain_list domains
2021-09-30 22:07:35 +02:00
become: true
ansible.builtin.command: "acmetool want {{ _domain.name }}"
args:
creates: "/var/lib/acme/live/{{ _domain.name }}"
2021-09-30 22:13:20 +02:00
with_items: "{{ acme_domain_want_list }}"
2021-09-30 22:07:35 +02:00
loop_control:
loop_var: _domain