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/unwant_domains.yml

8 lines
228 B
YAML
Raw Normal View History

2021-09-30 22:07:35 +02:00
---
- name: disable acmetool for acme_domain_unwant_list domains
become: true
ansible.builtin.command: "acmetool unwant {{ _domain.name }}"
with_items: "{{ acme_domain_unwant_list }}"
loop_control:
loop_var: _domain