mirror of
https://github.com/roles-ansible/ansible_role_acmetool.git
synced 2024-08-16 12:29:49 +02:00
9 lines
249 B
YAML
9 lines
249 B
YAML
---
|
|
- name: Disable acmetool for acme_domain_unwant_list domains
|
|
become: true
|
|
ansible.builtin.command: "acmetool unwant {{ _domain.name }}"
|
|
loop:
|
|
- "{{ acme_domain_unwant_list }}"
|
|
loop_control:
|
|
loop_var: _domain
|
|
changed_when: true
|