diff --git a/tasks/main.yml b/tasks/main.yml index bca8c45..f9a189a 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,9 +1,16 @@ --- +- name: Find trusted root certificates to add +- find: + paths: /var/log + register: ca_cert_files + - name: Copy public certificate files copy: src: files/ca_certs/ dest: /etc/pki/ca-trust/source/anchors/ become: true + with_items: ca_cert_files + when: ca_cert_files.matched > 0 notify: Update Trust Store - meta: flush_handlers