2021-01-24 16:51:02 +01:00
|
|
|
---
|
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
- when: has_java_keytool
|
2021-04-17 18:17:53 +02:00
|
|
|
connection: local
|
2021-01-24 16:51:02 +01:00
|
|
|
block:
|
2021-04-17 18:17:53 +02:00
|
|
|
- name: Include tasks to create ssl materials on the controller
|
|
|
|
include_tasks: prepare.yml
|
2021-01-24 16:51:02 +01:00
|
|
|
|
2021-04-17 18:17:53 +02:00
|
|
|
- when: has_java_keytool
|
|
|
|
block:
|
|
|
|
- name: Include tasks to play with 'certificate' and 'private_key' contents
|
|
|
|
include_tasks: tests.yml
|
|
|
|
vars:
|
|
|
|
remote_cert: false
|
|
|
|
|
|
|
|
- name: Include tasks to create ssl materials on the remote host
|
|
|
|
include_tasks: prepare.yml
|
|
|
|
|
|
|
|
- name: Include tasks to play with 'certificate_path' and 'private_key_path' locations
|
|
|
|
include_tasks: tests.yml
|
|
|
|
vars:
|
|
|
|
remote_cert: true
|