23 lines
744 B
YAML
23 lines
744 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: Backend auto-detection test
|
|
openssh_keypair:
|
|
path: '{{ output_dir }}/auto_backend_key'
|
|
state: "{{ item }}"
|
|
loop: ['present', 'absent']
|
|
|
|
- set_fact:
|
|
backends: ['opensshbin']
|
|
|
|
- set_fact:
|
|
backends: "{{ backends + ['cryptography'] }}"
|
|
when: cryptography_version.stdout is version('3.0', '>=') and bcrypt_version.stdout is version('3.1.5', '>=')
|
|
|
|
- include_tasks: ./impl.yml
|
|
loop: "{{ backends }}"
|
|
loop_control:
|
|
loop_var: backend |