fix: update the systems trust store from a handler

The update command ran on every play with changed_when tied to its return code, so the role never
reported a converged state. It is a handler now, notified by the anchor symlink and by the three tasks
which write cert.pem of the root certificate authority. Notifying from the certificate tasks as well keeps
the trust store correct on renewal, where the symlink itself stays untouched.

The anchor path and the update command moved into the per os_family vars, because a handler cannot read
the block vars they lived in before. Debian and RedHat need dedicated files again, they agree on the
package name but differ in anchor path, file extension and update command.

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-09-07 22:30:23 +02:00
co-authored by Copilot
parent 95181a18d4
commit a4be99b28b
8 changed files with 36 additions and 24 deletions
+8
View File
@@ -0,0 +1,8 @@
---
- name: Update systems SSL/TLS trust store
ansible.builtin.command:
cmd: "{{ certificate_authority_trust_store_update_command }}"
changed_when: true
when: certificate_authority_root_ca_import is defined and
certificate_authority_root_ca_import
+4 -21
View File
@@ -47,29 +47,12 @@
_concat_mode: "0600" _concat_mode: "0600"
- name: Import certificate of root Certificate Authority (CA) into systems trust store - name: Import certificate of root Certificate Authority (CA) into systems trust store
vars:
# Debian based distributions only consider anchors with the file extension crt.
_trust_store_anchor:
Archlinux: "/etc/ca-certificates/trust-source/anchors/{{ certificate_authority_root_ca_common_name | replace(' ', '_') }}.pem"
Debian: "/usr/local/share/ca-certificates/{{ certificate_authority_root_ca_common_name | replace(' ', '_') }}.crt"
RedHat: "/etc/pki/ca-trust/source/anchors/{{ certificate_authority_root_ca_common_name | replace(' ', '_') }}.pem"
_trust_store_update_command:
Archlinux: "/usr/bin/update-ca-trust"
Debian: "/usr/sbin/update-ca-certificates"
RedHat: "/usr/bin/update-ca-trust"
when: certificate_authority_root_ca_import is defined and
certificate_authority_root_ca_import
block:
- name: Create symolic link
ansible.builtin.file: ansible.builtin.file:
src: "{{ certificate_authority_root_ca_path }}/cert.pem" src: "{{ certificate_authority_root_ca_path }}/cert.pem"
dest: "{{ _trust_store_anchor[ansible_facts['os_family']] }}" dest: "{{ certificate_authority_trust_store_anchor }}"
owner: root owner: root
group: root group: root
state: link state: link
- name: Update systems SSL/TLS trust store notify: Update systems SSL/TLS trust store
ansible.builtin.command: when: certificate_authority_root_ca_import is defined and
cmd: "{{ _trust_store_update_command[ansible_facts['os_family']] }}" certificate_authority_root_ca_import
register: _update_ca_trust
changed_when: _update_ca_trust.rc == 0
failed_when: _update_ca_trust.rc > 0
@@ -16,4 +16,5 @@
owner: "root" owner: "root"
group: "root" group: "root"
mode: "0644" mode: "0644"
notify: Update systems SSL/TLS trust store
when: certificate_authority_root_ca_tls_crt_content | length > 0 when: certificate_authority_root_ca_tls_crt_content | length > 0
@@ -33,3 +33,4 @@
provider: selfsigned provider: selfsigned
selfsigned_not_after: "{{ certificate_authority_root_ca_not_after }}" selfsigned_not_after: "{{ certificate_authority_root_ca_not_after }}"
selfsigned_not_before: "{{ certificate_authority_root_ca_not_before }}" selfsigned_not_before: "{{ certificate_authority_root_ca_not_before }}"
notify: Update systems SSL/TLS trust store
@@ -29,3 +29,4 @@
provider: selfsigned provider: selfsigned
selfsigned_not_after: "{{ certificate_authority_root_ca_not_after }}" selfsigned_not_after: "{{ certificate_authority_root_ca_not_after }}"
selfsigned_not_before: "{{ certificate_authority_root_ca_not_before }}" selfsigned_not_before: "{{ certificate_authority_root_ca_not_before }}"
notify: Update systems SSL/TLS trust store
+3
View File
@@ -2,3 +2,6 @@
certificate_authority_python_packages: certificate_authority_python_packages:
- python-cryptography - python-cryptography
certificate_authority_trust_store_anchor: "/etc/ca-certificates/trust-source/anchors/{{ certificate_authority_root_ca_common_name | replace(' ', '_') }}.pem"
certificate_authority_trust_store_update_command: "/usr/bin/update-ca-trust"
+8
View File
@@ -0,0 +1,8 @@
---
certificate_authority_python_packages:
- python3-cryptography
# Debian based distributions only consider anchors with the file extension crt.
certificate_authority_trust_store_anchor: "/usr/local/share/ca-certificates/{{ certificate_authority_root_ca_common_name | replace(' ', '_') }}.crt"
certificate_authority_trust_store_update_command: "/usr/sbin/update-ca-certificates"
+7
View File
@@ -0,0 +1,7 @@
---
certificate_authority_python_packages:
- python3-cryptography
certificate_authority_trust_store_anchor: "/etc/pki/ca-trust/source/anchors/{{ certificate_authority_root_ca_common_name | replace(' ', '_') }}.pem"
certificate_authority_trust_store_update_command: "/usr/bin/update-ca-trust"