Tim Kuhlman e98b542158 Add a certificate authority to our boxes
All ssl certs will be signed with this CA

Change-Id: Ic418ab6b8f1fbc54cb11d22b849b52390ff9c1d1
2014-11-24 15:13:16 -07:00

8 lines
215 B
YAML

---
- name: Copy CA cert
copy: src={{cacert_src}} dest=/usr/local/share/ca-certificates/{{cacert_name}}
register: copy
- name: Run update-ca-certificates
command: update-ca-certificates
when: copy | changed