venv: use inventory_hostname instead of ansible_hostname

It is possible that the hostname of the system does not match the
one in the inventory which means that the delegate_to or the
comparision to inventory_hostname will fail in the tasks later.

Change-Id: I8d4597c63eb6e1390b6f71630701fa74ae5cdef9
This commit is contained in:
Heba Naser 2019-02-06 09:52:43 -05:00
parent 3c9e9beaf2
commit 22b7a5b7dd
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
- name: Ensure remote wheel building is disabled in developer mode - name: Ensure remote wheel building is disabled in developer mode
set_fact: set_fact:
venv_build_host: "{{ ansible_hostname }}" venv_build_host: "{{ inventory_hostname }}"
when: when:
- designate_developer_mode | bool - designate_developer_mode | bool