Fixes #39 adding new script for webroot

Fixes #41 support deployhook (webroot only)
Fixes #41 support for test CA
This commit is contained in:
Ryan Faircloth
2018-01-16 17:37:00 +00:00
parent 3f1a802d71
commit b935db607e
3 changed files with 39 additions and 1 deletions
+22
View File
@@ -0,0 +1,22 @@
---
- name: Check if certificate already exists.
stat:
path: /etc/letsencrypt/live/{{ cert_item.domains | first }}/cert.pem
register: letsencrypt_cert
- name: Create deploy hook
copy:
content: "{{ certbot_deployhook }}"
dest: /etc/letsencrypt/renewal-hooks/deploy/ansible.sh
mode: u+rwx
run_once: yes
when: certbot_deployhook is defined
- debug:
var: certbot_create_command
verbosity: 2
- name: Generate new certificate if one doesn't exist.
shell: "{{ certbot_create_command }}"
when: not letsencrypt_cert.stat.exists
+8
View File
@@ -15,5 +15,13 @@
loop_control:
loop_var: cert_item
- include_tasks: create-cert-webroot.yml
with_items: "{{ certbot_certs }}"
when:
- certbot_create_if_missing
- certbot_create_method == 'webroot'
loop_control:
loop_var: cert_item
- import_tasks: renew-cron.yml
when: certbot_auto_renew