mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
Without this change the "Import variables specific to distribution" tasks fail with "Could not find file on the Ansible Controller..." on environments with inject facts disabled. This changes the tests to run with ansible with inject_facts_as_vars = false and fixes other roles and playbooks.
16 lines
570 B
YAML
16 lines
570 B
YAML
---
|
|
- name: Get Domain from server name
|
|
set_fact:
|
|
test_domain: "{{ ansible_facts['fqdn'].split('.')[1:] | join('.') }}"
|
|
|
|
- name: Set host1, host2 and svc hosts fqdn
|
|
set_fact:
|
|
host1_fqdn: "{{ 'host1.' + test_domain }}"
|
|
host2_fqdn: "{{ 'host2.' + test_domain }}"
|
|
svc_fqdn: "{{ 'svc.' + test_domain }}"
|
|
nohost_fqdn: "{{ 'nohost.' + test_domain }}"
|
|
|
|
- name: Get IPv4 address prefix from server node
|
|
set_fact:
|
|
ipv4_prefix: "{{ ansible_facts['default_ipv4'].address.split('.')[:-1] | join('.') }}"
|