mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
Encapsulated SAN in block with when
This commit is contained in:
parent
5709935c92
commit
e4cc928eea
@ -1,32 +1,31 @@
|
|||||||
- name: Install certbundle
|
- block:
|
||||||
include_role:
|
- name: Install certbundle
|
||||||
name: pkgmgr-install
|
include_role:
|
||||||
vars:
|
name: pkgmgr-install
|
||||||
package_name: certbundle
|
vars:
|
||||||
when: run_once_san_certs is not defined
|
package_name: certbundle
|
||||||
|
|
||||||
- name: Generate SAN certificate with certbundle
|
- name: Generate SAN certificate with certbundle
|
||||||
command: >-
|
command: >-
|
||||||
certbundle
|
certbundle
|
||||||
--domains "{{ current_play_domains_all | join(',') }}"
|
--domains "{{ current_play_domains_all | join(',') }}"
|
||||||
--certbot-email "{{ users.administrator.email }}"
|
--certbot-email "{{ users.administrator.email }}"
|
||||||
--certbot-acme-challenge-method "{{ certbot_acme_challenge_method }}"
|
--certbot-acme-challenge-method "{{ certbot_acme_challenge_method }}"
|
||||||
--chunk-size 100
|
--chunk-size 100
|
||||||
{% if certbot_acme_challenge_method != 'webroot' %}
|
{% if certbot_acme_challenge_method != 'webroot' %}
|
||||||
--certbot-credentials-file "{{ certbot_credentials_file }}"
|
--certbot-credentials-file "{{ certbot_credentials_file }}"
|
||||||
--certbot-dns-propagation-seconds "{{ certbot_dns_propagation_wait_seconds }}"
|
--certbot-dns-propagation-seconds "{{ certbot_dns_propagation_wait_seconds }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
--letsencrypt-webroot-path "{{ letsencrypt_webroot_path }}"
|
--letsencrypt-webroot-path "{{ letsencrypt_webroot_path }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{{ '--mode-test' if mode_test | bool else '' }}
|
{{ '--mode-test' if mode_test | bool else '' }}
|
||||||
register: certbundle_result
|
register: certbundle_result
|
||||||
changed_when: "'Certificate not yet due for renewal' not in certbundle_result.stdout"
|
changed_when: "'Certificate not yet due for renewal' not in certbundle_result.stdout"
|
||||||
failed_when: >
|
failed_when: >
|
||||||
certbundle_result.rc != 0
|
certbundle_result.rc != 0
|
||||||
and 'too many certificates' not in certbundle_result.stderr
|
and 'too many certificates' not in certbundle_result.stderr
|
||||||
when: run_once_san_certs is not defined
|
|
||||||
|
|
||||||
- name: run the san tasks once
|
- name: run the san tasks once
|
||||||
set_fact:
|
set_fact:
|
||||||
run_once_san_certs: true
|
run_once_san_certs: true
|
||||||
when: run_once_san_certs is not defined
|
when: run_once_san_certs is not defined
|
Loading…
x
Reference in New Issue
Block a user