lint
This commit is contained in:
parent
04a8acf0aa
commit
3914590287
3 changed files with 8 additions and 8 deletions
|
|
@ -41,9 +41,9 @@ galaxy_info:
|
||||||
- "10"
|
- "10"
|
||||||
- name: Rocky
|
- name: Rocky
|
||||||
versions:
|
versions:
|
||||||
- "8"
|
- "8.0"
|
||||||
- "9"
|
- "9.0"
|
||||||
- "10"
|
- "all"
|
||||||
- name: Fedora
|
- name: Fedora
|
||||||
versions:
|
versions:
|
||||||
- "43"
|
- "43"
|
||||||
|
|
|
||||||
|
|
@ -91,4 +91,4 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: "0644"
|
mode: "0644"
|
||||||
loop: "{{ physical_interfaces[0:] }}"
|
loop: "{{ physical_interfaces[0:] }}"
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@
|
||||||
install_root_cert_tmp_path: "{{ install_root_cert_tmp_folder }}/{{ install_root_cert_pem | basename }}"
|
install_root_cert_tmp_path: "{{ install_root_cert_tmp_folder }}/{{ install_root_cert_pem | basename }}"
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
- name: Copy certificate to temporary location
|
- name: Copy certificate to temporary location
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: "{{ install_root_cert_pem }}"
|
src: "{{ install_root_cert_pem }}"
|
||||||
dest: "{{ install_root_cert_tmp_path }}"
|
dest: "{{ install_root_cert_tmp_path }}"
|
||||||
|
|
||||||
- name: Add certificate to Mac OS keychain
|
- 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 }}"
|
ansible.builtin.command: security add-trusted-cert -d -r trustRoot -k "/Library/Keychains/System.keychain" "{{ install_root_cert_tmp_path }}"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue