dotfiles/ansible/scripts/install_local_ca.yml

16 lines
347 B
YAML
Raw Normal View History

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