2016-05-11 05:43:07 +02:00
|
|
|
# The docker --link functionality gives us an ENV var we can key off of to see if we have access to
|
|
|
|
# the httptester container
|
|
|
|
- set_fact:
|
2016-05-31 23:47:36 +02:00
|
|
|
has_httptester: "{{ lookup('env', 'HTTPTESTER') != '' }}"
|
2016-05-11 05:43:07 +02:00
|
|
|
|
2018-10-13 00:20:00 +02:00
|
|
|
- name: make sure we have the ansible_os_family and ansible_distribution_version facts
|
|
|
|
setup:
|
|
|
|
gather_subset: distribution
|
|
|
|
when: ansible_facts == {}
|
|
|
|
|
2016-05-11 05:43:07 +02:00
|
|
|
# If we are running with access to a httptester container, grab it's cacert and install it
|
|
|
|
- block:
|
|
|
|
# Override hostname defaults with httptester linked names
|
|
|
|
- include_vars: httptester.yml
|
|
|
|
|
2020-02-07 22:38:33 +01:00
|
|
|
- include_tasks: "{{ lookup('first_found', files)}}"
|
|
|
|
vars:
|
|
|
|
files:
|
|
|
|
- "{{ ansible_os_family | lower }}.yml"
|
|
|
|
- "default.yml"
|
2018-10-13 00:20:00 +02:00
|
|
|
when:
|
|
|
|
- has_httptester|bool
|
|
|
|
# skip the setup if running on Windows Server 2008 as httptester is not available
|
|
|
|
- ansible_os_family != 'Windows' or (ansible_os_family == 'Windows' and not ansible_distribution_version.startswith("6.0."))
|
2020-10-13 06:16:07 +02:00
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
krb5_password: "{{ lookup('env', 'KRB5_PASSWORD') }}"
|
|
|
|
|
|
|
|
- name: setup Kerberos client
|
|
|
|
include_tasks: kerberos.yml
|
|
|
|
when:
|
|
|
|
- has_httptester|bool
|
|
|
|
- ansible_os_family != 'Windows'
|
|
|
|
- krb5_password != ''
|