From 468588d3f814696c2e9a8478fb356fc5c25dd988 Mon Sep 17 00:00:00 2001 From: Jonathan Hanson Date: Wed, 9 Jan 2019 01:44:15 -0800 Subject: [PATCH] inventory: vagrant: rename deprectated ansible_ssh_* (#50694) --- contrib/inventory/vagrant.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/inventory/vagrant.py b/contrib/inventory/vagrant.py index d235ed4df8..df3e899e37 100755 --- a/contrib/inventory/vagrant.py +++ b/contrib/inventory/vagrant.py @@ -47,10 +47,10 @@ from ansible.module_utils.six.moves import StringIO _group = 'vagrant' # a default group -_ssh_to_ansible = [('user', 'ansible_ssh_user'), - ('hostname', 'ansible_ssh_host'), +_ssh_to_ansible = [('user', 'ansible_user'), + ('hostname', 'ansible_host'), ('identityfile', 'ansible_ssh_private_key_file'), - ('port', 'ansible_ssh_port')] + ('port', 'ansible_port')] # Options # ------------------------------