This commit is contained in:
Alexander Kazantsev 2026-05-15 21:20:01 +03:00
parent 04a8acf0aa
commit 3914590287
3 changed files with 8 additions and 8 deletions

View file

@ -41,9 +41,9 @@ galaxy_info:
- "10"
- name: Rocky
versions:
- "8"
- "9"
- "10"
- "8.0"
- "9.0"
- "all"
- name: Fedora
versions:
- "43"

View file

@ -3,10 +3,10 @@
install_root_cert_tmp_path: "{{ install_root_cert_tmp_folder }}/{{ install_root_cert_pem | basename }}"
- block:
- name: Copy certificate to temporary location
ansible.builtin.copy:
src: "{{ install_root_cert_pem }}"
dest: "{{ install_root_cert_tmp_path }}"
- name: Copy certificate to temporary location
ansible.builtin.copy:
src: "{{ install_root_cert_pem }}"
dest: "{{ install_root_cert_tmp_path }}"
- name: Add certificate to Mac OS keychain
ansible.builtin.command: security add-trusted-cert -d -r trustRoot -k "/Library/Keychains/System.keychain" "{{ install_root_cert_tmp_path }}"