Change certificate locations, update powerdns aliases

This commit is contained in:
Kishi 2018-09-11 13:58:24 +02:00
parent 9dcdbdf983
commit 9f608c886d
4 changed files with 25 additions and 4 deletions

View File

@ -8,3 +8,9 @@ acme_nsupdate_server: "neon.binary-kitchen.net"
acme_sh_url: "https://raw.githubusercontent.com/Neilpang/acme.sh/master/acme.sh"
acme_dns_nsupdate_url: "https://raw.githubusercontent.com/Neilpang/acme.sh/master/dnsapi/dns_nsupdate.sh"
acme_reloadcmd: "/etc/ssl/private/reload.sh"
acme_key: "/etc/ssl/private/host.key"
acme_cert: "/etc/ssl/private/host.cert"
acme_ca: "/etc/ssl/private/host.ca"
acme_fullchain: "/etc/ssl/private/host.fullchain"

View File

@ -0,0 +1,5 @@
#!/bin/bash
[ -d '/etc/reload.d' ] && for x in "/etc/reload.d/"*; do
[ -e "$x" ] && "$x"
done
exit 0

View File

@ -11,6 +11,13 @@
changed_when: "False"
delegate_to: "{{ acme_nsupdate_server }}"
- name: Update updatepolicy.aliases
lineinfile:
path: "/etc/powerdns/updatepolicy.aliases"
regexp: '^alias\["{{ inventory_hostname}}\."\]'
line: 'alias["{{ inventory_hostname }}."] = {"{{ ''.","''.join(acme_san_domains) }}."} '
delegate_to: "{{ acme_nsupdate_server }}"
- name: Generate nsupdate.key
shell: "pdnsutil generate-tsig-key 'acme-{{ inventory_hostname }}.' '{{ acme_nsupdate_keyalgo }}'"
register: "pdns_nsupdate_genkey"
@ -69,11 +76,11 @@
- name: Copy reload.sh
copy:
src: "reload.sh"
dest: "{{ acme_home }}/{{ inventory_hostname }}/reload.sh"
dest: "{{ acme_reloadcmd }}"
mode: "0755"
- name: Issue certificate
shell: "{{ lookup('template','acme.sh.request.j2').replace('\n',' ') }}"
args:
chdir: "{{ acme_home }}"
creates: "{{ acme_home }}/{{ inventory_hostname }}/{{ inventory_hostname }}.key"
creates: "{{ acme_cert }}"

View File

@ -2,7 +2,6 @@ NSUPDATE_KEY="{{ acme_nsupdate_key }}"
NSUPDATE_SERVER="{{ acme_nsupdate_server }}"
"{{ acme_home }}/acme.sh"
--home "{{ acme_home }}"
--reloadCmd "{{ acme_home }}/{{ inventory_hostname }}/reload.sh"
--log
--issue
-k 4096
@ -16,4 +15,8 @@ NSUPDATE_SERVER="{{ acme_nsupdate_server }}"
{% if acme_staging is defined and acme_staging %}
--staging
{% endif %}
;
--cert-file "{{ acme_cert }}"
--key-file "{{ acme_key }}"
--ca-file "{{ acme_ca }}"
--fullchain-file "{{ acme_fullchain }}"
--reloadcmd "{{ acme_reloadcmd }}"