Limit SSH agent DSA testing to RHEL 9 (#85193)

pull/85194/head
Matt Clay 8 months ago committed by GitHub
parent 75f7b2267d
commit 6a1c24ca99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -8,7 +8,9 @@
- set_fact:
key_types: "{{ key_types + ['dsa'] }}"
when: ansible_distribution == "RedHat"
when:
- ansible_distribution == "RedHat"
- ansible_distribution_major_version | int == 9
- include_tasks: test_key.yml
loop: "{{ key_types }}"

Loading…
Cancel
Save