From 04b9012e152ea59c283970929825ca1fa9143d0b Mon Sep 17 00:00:00 2001 From: Christian Pointner Date: Mon, 14 Nov 2022 22:19:45 +0100 Subject: acmetool/cert: fix inadvertent disable of certifcate generation --- roles/acmetool/cert/tasks/main.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'roles') diff --git a/roles/acmetool/cert/tasks/main.yml b/roles/acmetool/cert/tasks/main.yml index 4d8d7eb3..e97aab84 100644 --- a/roles/acmetool/cert/tasks/main.yml +++ b/roles/acmetool/cert/tasks/main.yml @@ -1,10 +1,10 @@ --- -# - name: add acmetool desired file -# vars: -# acmetool_cert_satisfy: -# satisfy: -# names: "{{ acmetool_cert_hostnames | default([acmetool_cert_name]) }}" -# ansible.builtin.copy: -# content: "{{ acmetool_cert_config | default({}) | combine(acmetool_cert_satisfy) | to_nice_yaml }}" -# dest: "/var/lib/acme/desired/{{ acmetool_cert_name }}" -# notify: reconcile acmetool +- name: add acmetool desired file + vars: + acmetool_cert_satisfy: + satisfy: + names: "{{ acmetool_cert_hostnames | default([acmetool_cert_name]) }}" + ansible.builtin.copy: + content: "{{ acmetool_cert_config | default({}) | combine(acmetool_cert_satisfy) | to_nice_yaml }}" + dest: "/var/lib/acme/desired/{{ acmetool_cert_name }}" + notify: reconcile acmetool -- cgit v1.2.3