dotfiles/ansible/scripts/install_local_ca.yml
2025-12-07 08:06:44 -06:00

15 lines
347 B
YAML

- name: Ensure ca-certificates directory exists
file:
path: /etc/ca-certificates/trust-source/anchors
state: directory
owner: root
group: root
mode: '0755'
- name: Copy Public certs
copy:
src: durp.crt
dest: /etc/ca-certificates/trust-source/anchors/durp.crt
- name: Trust certs
command: update-ca-certificates