summaryrefslogtreecommitdiff
path: root/roles/acmetool/cert
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2021-06-09 14:11:30 +0200
committerChristian Pointner <equinox@spreadspace.org>2021-06-09 14:11:30 +0200
commita14a183e8181e6d3a8604822f6d0773328a79e13 (patch)
treed77fb3b6d6f5662140f586fa80cd65ed73a3ef41 /roles/acmetool/cert
parentws cleanup (diff)
move acmtool roles to use FQCN
Diffstat (limited to 'roles/acmetool/cert')
-rw-r--r--roles/acmetool/cert/handlers/main.yml2
-rw-r--r--roles/acmetool/cert/tasks/main.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/acmetool/cert/handlers/main.yml b/roles/acmetool/cert/handlers/main.yml
index a7fc43ed..08892c18 100644
--- a/roles/acmetool/cert/handlers/main.yml
+++ b/roles/acmetool/cert/handlers/main.yml
@@ -1,6 +1,6 @@
---
- name: reconcile acmetool
when: not acmetool_reconcile_disabled
- systemd:
+ ansible.builtin.systemd:
name: acmetool.service
state: started
diff --git a/roles/acmetool/cert/tasks/main.yml b/roles/acmetool/cert/tasks/main.yml
index 09980dad..e97aab84 100644
--- a/roles/acmetool/cert/tasks/main.yml
+++ b/roles/acmetool/cert/tasks/main.yml
@@ -4,7 +4,7 @@
acmetool_cert_satisfy:
satisfy:
names: "{{ acmetool_cert_hostnames | default([acmetool_cert_name]) }}"
- copy:
+ 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