Merge "Ensure ansible_fqdn is set" into stable/train

This commit is contained in:
Zuul 2021-04-15 21:43:22 +00:00 committed by Gerrit Code Review
commit ff54d9d564
2 changed files with 12 additions and 0 deletions

View File

@ -98,6 +98,9 @@ outputs:
- name: add the ipa services for this node in step 1 - name: add the ipa services for this node in step 1
when: step|int == 1 when: step|int == 1
block: block:
- name: Ensure ansible_fqdn is defined
set_fact:
ansible_fqdn: "{{ ansible_facts['fqdn'] }}"
- include_role: - include_role:
name: tripleo_ipa_registration name: tripleo_ipa_registration
vars: vars:
@ -136,6 +139,12 @@ outputs:
ipaclient_install_packages: {get_param: IdMInstallClientPackages} ipaclient_install_packages: {get_param: IdMInstallClientPackages}
ipaclients: ipaclients:
- "{{ inventory_hostname }}" - "{{ inventory_hostname }}"
ansible_distribution: "{{ ansible_facts['distribution'] }}"
ansible_distribution_major_version: "{{ ansible_facts['distribution_major_version'] }}"
ansible_distribution_release: "{{ ansible_facts['distribution_release'] }}"
ansible_distribution_version: "{{ ansible_facts['distribution_version'] }}"
ansible_os_family: "{{ ansible_facts['os_family'] }}"
ansible_fqdn: "{{ ipaclient_hostname }}"
- -
if: if:
- idm_server_provided - idm_server_provided

View File

@ -59,6 +59,9 @@ outputs:
package: package:
name: ipa-client name: ipa-client
state: present state: present
- name: Ensure ansible_fqdn is defined
set_fact:
ansible_fqdn: "{{ ansible_facts['fqdn'] }}"
- name: Create tripleo-admin user and group - name: Create tripleo-admin user and group
include_role: include_role:
name: tripleo-create-admin name: tripleo-create-admin