Fix: Add necessary becomes
This commit is contained in:
parent
b2e9c22821
commit
b536e5c2fb
|
@ -84,10 +84,12 @@
|
||||||
vars:
|
vars:
|
||||||
cert__nsupdate_domain: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].record }}"
|
cert__nsupdate_domain: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].record }}"
|
||||||
cert__nsupdate_txt_data: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].resource_value }}"
|
cert__nsupdate_txt_data: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].resource_value }}"
|
||||||
|
become: true
|
||||||
delegate_to: "{{ cert__bind_9_host }}"
|
delegate_to: "{{ cert__bind_9_host }}"
|
||||||
|
|
||||||
- name: Add DNS record to BIND 9 server via nsupdate # noqa: no-changed-when
|
- name: Add DNS record to BIND 9 server via nsupdate # noqa: no-changed-when
|
||||||
ansible.builtin.command: /usr/bin/nsupdate -l /root/nsupdate_add_txt_record
|
ansible.builtin.command: /usr/bin/nsupdate -l /root/nsupdate_add_txt_record
|
||||||
|
become: true
|
||||||
delegate_to: "{{ cert__bind_9_host }}"
|
delegate_to: "{{ cert__bind_9_host }}"
|
||||||
|
|
||||||
- name: Retrieve certificate
|
- name: Retrieve certificate
|
||||||
|
@ -110,6 +112,7 @@
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /root/nsupdate_add_txt_record
|
path: /root/nsupdate_add_txt_record
|
||||||
state: absent
|
state: absent
|
||||||
|
become: true
|
||||||
delegate_to: "{{ cert__bind_9_host }}"
|
delegate_to: "{{ cert__bind_9_host }}"
|
||||||
|
|
||||||
- name: Remove TXT record again
|
- name: Remove TXT record again
|
||||||
|
@ -124,16 +127,19 @@
|
||||||
vars:
|
vars:
|
||||||
cert__nsupdate_domain: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].record }}"
|
cert__nsupdate_domain: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].record }}"
|
||||||
cert__nsupdate_txt_data: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].resource_value }}"
|
cert__nsupdate_txt_data: "{{ cert__acme_challenge.challenge_data[item]['dns-01'].resource_value }}"
|
||||||
|
become: true
|
||||||
delegate_to: "{{ cert__bind_9_host }}"
|
delegate_to: "{{ cert__bind_9_host }}"
|
||||||
|
|
||||||
- name: Remove DNS record from BIND 9 server via nsupdate # noqa: no-changed-when
|
- name: Remove DNS record from BIND 9 server via nsupdate # noqa: no-changed-when
|
||||||
ansible.builtin.command: /usr/bin/nsupdate -l /root/nsupdate_delete_txt_record
|
ansible.builtin.command: /usr/bin/nsupdate -l /root/nsupdate_delete_txt_record
|
||||||
|
become: true
|
||||||
delegate_to: "{{ cert__bind_9_host }}"
|
delegate_to: "{{ cert__bind_9_host }}"
|
||||||
always:
|
always:
|
||||||
- name: Remove file containing nsupdate commands for deleting TXT record again
|
- name: Remove file containing nsupdate commands for deleting TXT record again
|
||||||
ansible.builtin.file:
|
ansible.builtin.file:
|
||||||
path: /root/nsupdate_delete_txt_record
|
path: /root/nsupdate_delete_txt_record
|
||||||
state: absent
|
state: absent
|
||||||
|
become: true
|
||||||
delegate_to: "{{ cert__bind_9_host }}"
|
delegate_to: "{{ cert__bind_9_host }}"
|
||||||
|
|
||||||
- name: Ensure correct permissions for certificate are set
|
- name: Ensure correct permissions for certificate are set
|
||||||
|
|
Loading…
Reference in a new issue