diff options
author | Thomas Wiest <twiest@users.noreply.github.com> | 2015-08-14 16:30:30 -0400 |
---|---|---|
committer | Thomas Wiest <twiest@users.noreply.github.com> | 2015-08-14 16:30:30 -0400 |
commit | 420ce5b14287f942fbcaa67f54b0a1cc6b11c18f (patch) | |
tree | 2f94c07a672ddbeda3db3bc253499608ff92e3c0 /inventory | |
parent | 624a942cb5335fe0afdccd285ffddbab63c1be15 (diff) | |
parent | 598d9355d0ae4088f6afb11a1a12821efd0939f5 (diff) | |
download | openshift-420ce5b14287f942fbcaa67f54b0a1cc6b11c18f.tar.gz openshift-420ce5b14287f942fbcaa67f54b0a1cc6b11c18f.tar.bz2 openshift-420ce5b14287f942fbcaa67f54b0a1cc6b11c18f.tar.xz openshift-420ce5b14287f942fbcaa67f54b0a1cc6b11c18f.zip |
Merge pull request #428 from jtslear/issue-383
Removes hardcoded python2
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/aws/hosts/hosts | 2 | ||||
-rw-r--r-- | inventory/gce/hosts/hosts | 2 | ||||
-rw-r--r-- | inventory/libvirt/hosts/hosts | 2 | ||||
-rw-r--r-- | inventory/openstack/hosts/hosts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/inventory/aws/hosts/hosts b/inventory/aws/hosts/hosts index 34a4396bd..bf4e0845a 100644 --- a/inventory/aws/hosts/hosts +++ b/inventory/aws/hosts/hosts @@ -1 +1 @@ -localhost ansible_connection=local ansible_sudo=no ansible_python_interpreter=/usr/bin/python2 +localhost ansible_connection=local ansible_sudo=no ansible_python_interpreter='/usr/bin/env python2' diff --git a/inventory/gce/hosts/hosts b/inventory/gce/hosts/hosts index 34a4396bd..bf4e0845a 100644 --- a/inventory/gce/hosts/hosts +++ b/inventory/gce/hosts/hosts @@ -1 +1 @@ -localhost ansible_connection=local ansible_sudo=no ansible_python_interpreter=/usr/bin/python2 +localhost ansible_connection=local ansible_sudo=no ansible_python_interpreter='/usr/bin/env python2' diff --git a/inventory/libvirt/hosts/hosts b/inventory/libvirt/hosts/hosts index 34a4396bd..bf4e0845a 100644 --- a/inventory/libvirt/hosts/hosts +++ b/inventory/libvirt/hosts/hosts @@ -1 +1 @@ -localhost ansible_connection=local ansible_sudo=no ansible_python_interpreter=/usr/bin/python2 +localhost ansible_connection=local ansible_sudo=no ansible_python_interpreter='/usr/bin/env python2' diff --git a/inventory/openstack/hosts/hosts b/inventory/openstack/hosts/hosts index 9cdc31449..2d2194a4d 100644 --- a/inventory/openstack/hosts/hosts +++ b/inventory/openstack/hosts/hosts @@ -1 +1 @@ -localhost ansible_sudo=no ansible_python_interpreter=/usr/bin/python2 connection=local +localhost ansible_sudo=no ansible_python_interpreter='/usr/bin/env python2' connection=local |