Py3 vargrant inv (#37803)
* Fix dynamic inventory for vagrant does not work on python3 (#37631)
* Fix dynamic inventory for vagrant does not work on python3 #35129
(cherry picked from commit 1b121fc9e4
)
* Add vagrant python3 fix to the changelog
This commit is contained in:
parent
f23c100419
commit
8d008d00ed
2 changed files with 11 additions and 4 deletions
2
changelogs/fragments/py3-vagrant-inv.yaml
Normal file
2
changelogs/fragments/py3-vagrant-inv.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- Fix bytes/text handling in vagrant dynamic inventory https://github.com/ansible/ansible/pull/37631
|
|
@ -38,14 +38,17 @@ import os.path
|
|||
import subprocess
|
||||
import re
|
||||
from paramiko import SSHConfig
|
||||
from cStringIO import StringIO
|
||||
from optparse import OptionParser
|
||||
from collections import defaultdict
|
||||
try:
|
||||
import json
|
||||
except:
|
||||
except Exception:
|
||||
import simplejson as json
|
||||
|
||||
from ansible.module_utils._text import to_text
|
||||
from ansible.module_utils.six.moves import StringIO
|
||||
|
||||
|
||||
_group = 'vagrant' # a default group
|
||||
_ssh_to_ansible = [('user', 'ansible_ssh_user'),
|
||||
('hostname', 'ansible_ssh_host'),
|
||||
|
@ -74,7 +77,8 @@ def get_ssh_config():
|
|||
|
||||
# list all the running boxes
|
||||
def list_running_boxes():
|
||||
output = subprocess.check_output(["vagrant", "status"]).split('\n')
|
||||
|
||||
output = to_text(subprocess.check_output(["vagrant", "status"]), errors='surrogate_or_strict').split('\n')
|
||||
|
||||
boxes = []
|
||||
|
||||
|
@ -90,7 +94,7 @@ def list_running_boxes():
|
|||
def get_a_ssh_config(box_name):
|
||||
"""Gives back a map of all the machine's ssh configurations"""
|
||||
|
||||
output = subprocess.check_output(["vagrant", "ssh-config", box_name])
|
||||
output = to_text(subprocess.check_output(["vagrant", "ssh-config", box_name]), errors='surrogate_or_strict')
|
||||
config = SSHConfig()
|
||||
config.parse(StringIO(output))
|
||||
host_config = config.lookup(box_name)
|
||||
|
@ -104,6 +108,7 @@ def get_a_ssh_config(box_name):
|
|||
|
||||
return dict((v, host_config[k]) for k, v in _ssh_to_ansible)
|
||||
|
||||
|
||||
# List out servers that vagrant has running
|
||||
# ------------------------------
|
||||
if options.list:
|
||||
|
|
Loading…
Reference in a new issue