Remove deprecated ansible_ssh_host variable
This changes 'ansible_ssh_host' to 'ansible_host'. The 'ansible_ssh_host' variable has been deprecated as noted here: [0]. [0] - http://docs.ansible.com/ansible/intro_inventory.html#hosts-and-groups Change-Id: I39892435950eca6da773dd947894da2125eab147 Related-Bug: #1636606 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
parent
d364f1bb27
commit
e566c20b24
@ -137,7 +137,7 @@ class StrategyModule(LINEAR.StrategyModule):
|
||||
ph = self._inventory.get_host(physical_host)
|
||||
ansible_host = ph.vars.get('ansible_host')
|
||||
if not ansible_host:
|
||||
ansible_host = ph.vars.get('ansible_ssh_host')
|
||||
ansible_host = ph.vars.get('ansible_host')
|
||||
if ansible_host:
|
||||
_vars['physical_host'] = ansible_host
|
||||
_vars['physical_hostname'] = physical_host
|
||||
|
Loading…
Reference in New Issue
Block a user