Fix ansible-lint warnings in base and proxy roles

This commit is contained in:
2026-01-10 10:36:08 -05:00
parent a3f723885d
commit d3a6b22199
3 changed files with 5 additions and 3 deletions

View File

@@ -12,12 +12,12 @@
- name: Check for cached dhparams.pem file
ansible.builtin.stat:
path: "{{ cached_dhparams_pem }}"
path: "{{ proxy_cached_dhparams_pem }}"
register: dhparams_file
- name: Copy cached dhparams.pem to /etc/ssl/
ansible.builtin.copy:
src: "{{ cached_dhparams_pem }}"
src: "{{ proxy_cached_dhparams_pem }}"
dest: /etc/ssl/dhparams.pem
mode: "600"
remote_src: true