diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2016-03-14 15:41:24 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2016-03-14 15:41:24 -0400 |
commit | 4c6290bba977fea444c1758d74610c9dbf73be4e (patch) | |
tree | 65f9bdd49f44ef6a242144214e996ff6c72a8950 /bin/ossh_bash_completion | |
parent | f4687e333679748341326e8d2fff38a8c93a7606 (diff) | |
parent | 8279c9423d1e2166db04c256e3b475583537888b (diff) | |
download | openshift-4c6290bba977fea444c1758d74610c9dbf73be4e.tar.gz openshift-4c6290bba977fea444c1758d74610c9dbf73be4e.tar.bz2 openshift-4c6290bba977fea444c1758d74610c9dbf73be4e.tar.xz openshift-4c6290bba977fea444c1758d74610c9dbf73be4e.zip |
Merge pull request #1598 from kwoodson/metafix
Updates for metadata tooling to work without env.
Diffstat (limited to 'bin/ossh_bash_completion')
-rwxr-xr-x | bin/ossh_bash_completion | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ossh_bash_completion b/bin/ossh_bash_completion index 77b770a43..dcbde3e51 100755 --- a/bin/ossh_bash_completion +++ b/bin/ossh_bash_completion @@ -1,12 +1,12 @@ __ossh_known_hosts(){ if python -c 'import openshift_ansible' &>/dev/null; then - /usr/bin/python -c 'from openshift_ansible import multi_inventory; m=multi_inventory.MultiInventory(); m.run(); z=m.result; print "\n".join(["%s.%s" % (host["oo_name"],host["oo_environment"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("oo_name", "oo_environment"))])' + /usr/bin/python -c 'from openshift_ansible import multi_inventory; m=multi_inventory.MultiInventory(); m.run(); z=m.result; print "\n".join([name for name in z["_meta"]["hostvars"].keys()])' elif [[ -f /dev/shm/.ansible/tmp/multi_inventory.cache ]]; then - /usr/bin/python -c 'import json; loc="/dev/shm/.ansible/tmp/multi_inventory.cache"; z=json.loads(open(loc).read()); print "\n".join(["%s.%s" % (host["oo_name"],host["oo_environment"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("oo_name", "oo_environment"))])' + /usr/bin/python -c 'import json; loc="/dev/shm/.ansible/tmp/multi_inventory.cache"; z=json.loads(open(loc).read()); print "\n".join([name for name in z["_meta"]["hostvars"].keys()])' elif [[ -f ~/.ansible/tmp/multi_inventory.cache ]]; then - /usr/bin/python -c 'import json,os; loc="%s" % os.path.expanduser("~/.ansible/tmp/multi_inventory.cache"); z=json.loads(open(loc).read()); print "\n".join(["%s.%s" % (host["oo_name"],host["oo_environment"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("oo_name", "oo_environment"))])' + /usr/bin/python -c 'import json,os; loc="%s" % os.path.expanduser("~/.ansible/tmp/multi_inventory.cache"); z=json.loads(open(loc).read()); print "\n".join([name for name in z["_meta"]["hostvars"].keys()])' fi } |