summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJonathan Hanson <triplepoint@gmail.com>2019-01-09 01:44:15 -0800
committerRené Moser <mail@renemoser.net>2019-01-09 10:44:15 +0100
commit468588d3f814696c2e9a8478fb356fc5c25dd988 (patch)
treea4415c070da3b4ecdc2688298d68ae70875cef15 /contrib
parent6d605dc3f96a43941029fa0aa08ff84c3c2959bb (diff)
downloadansible-468588d3f814696c2e9a8478fb356fc5c25dd988.tar.gz
inventory: vagrant: rename deprectated ansible_ssh_* (#50694)
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/inventory/vagrant.py6
1 files 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
# ------------------------------