You've already forked ansible-role-customca
13 lines
300 B
YAML
13 lines
300 B
YAML
---
|
|
- name: Copy public certificate files
|
|
copy:
|
|
src: "{{ item }}"
|
|
dest: /etc/pki/ca-trust/source/anchors/
|
|
become: true
|
|
with_fileglob:
|
|
- "{{ playbook_dir }}/files/ca_certs/*.pem"
|
|
- "{{ playbook_dir }}/files/ca_certs/*.cer"
|
|
notify: Update Trust Store
|
|
|
|
- meta: flush_handlers
|