2025-12-07 08:06:44 -06:00
|
|
|
- name: Ensure ca-certificates directory exists
|
|
|
|
|
file:
|
|
|
|
|
path: /etc/ca-certificates/trust-source/anchors
|
|
|
|
|
state: directory
|
|
|
|
|
owner: root
|
|
|
|
|
group: root
|
|
|
|
|
mode: '0755'
|
|
|
|
|
|
2025-04-06 20:13:27 -05:00
|
|
|
- name: Copy Public certs
|
|
|
|
|
copy:
|
|
|
|
|
src: durp.crt
|
|
|
|
|
dest: /etc/ca-certificates/trust-source/anchors/durp.crt
|
|
|
|
|
|
|
|
|
|
- name: Trust certs
|
2025-12-07 08:06:44 -06:00
|
|
|
command: update-ca-certificates
|