summaryrefslogtreecommitdiff
path: root/roles
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2022-11-14 22:19:45 +0100
committerChristian Pointner <equinox@spreadspace.org>2022-11-14 22:19:45 +0100
commit04b9012e152ea59c283970929825ca1fa9143d0b (patch)
treeaaf7f175ef7480141b310c11b2205ef783196978 /roles
parentgit.spreadspace has been migrated (diff)
acmetool/cert: fix inadvertent disable of certifcate generation
Diffstat (limited to 'roles')
-rw-r--r--roles/acmetool/cert/tasks/main.yml18
1 files changed, 9 insertions, 9 deletions
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