ossh_bash_completion 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. __ossh_known_hosts(){
  2. if python -c 'import openshift_ansible' &>/dev/null; then
  3. /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["ec2_tag_Name"],host["ec2_tag_env"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("ec2_tag_Name", "ec2_tag_env"))])'
  4. elif [[ -f /dev/shm/.ansible/tmp/multi_inventory.cache ]]; then
  5. /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["ec2_tag_Name"],host["ec2_tag_env"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("ec2_tag_Name", "ec2_tag_env"))])'
  6. elif [[ -f ~/.ansible/tmp/multi_inventory.cache ]]; then
  7. /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["ec2_tag_Name"],host["ec2_tag_env"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("ec2_tag_Name", "ec2_tag_env"))])'
  8. fi
  9. }
  10. _ossh()
  11. {
  12. local cur prev known_hosts
  13. COMPREPLY=()
  14. cur="${COMP_WORDS[COMP_CWORD]}"
  15. prev="${COMP_WORDS[COMP_CWORD-1]}"
  16. known_hosts="$(__ossh_known_hosts)"
  17. COMPREPLY=( $(compgen -W "${known_hosts}" -- ${cur}))
  18. return 0
  19. }
  20. complete -F _ossh ossh oscp
  21. __opssh_known_hosts(){
  22. if python -c 'import openshift_ansible' &>/dev/null; then
  23. /usr/bin/python -c 'from openshift_ansible.multi_inventory import MultiInventory; m=MultiInventory(); m.run(); print "\n".join(["%s" % (host["ec2_tag_host-type"]) for dns, host in m.result["_meta"]["hostvars"].items() if "ec2_tag_host-type" in host])'
  24. elif [[ -f /dev/shm/.ansible/tmp/multi_inventory.cache ]]; then
  25. /usr/bin/python -c 'import json; loc="/dev/shm/.ansible/tmp/multi_inventory.cache"; z=json.loads(open(loc).read()); print "\n".join(["%s" % (host["ec2_tag_host-type"]) for dns, host in z["_meta"]["hostvars"].items() if "ec2_tag_host-type" in host])'
  26. elif [[ -f ~/.ansible/tmp/multi_inventory.cache ]]; then
  27. /usr/bin/python -c 'import json,os; loc="%s" % os.path.expanduser("/dev/shm/.ansible/tmp/multi_inventory.cache"); z=json.loads(open(loc).read()); print "\n".join(["%s" % (host["ec2_tag_host-type"]) for dns, host in z["_meta"]["hostvars"].items() if "ec2_tag_host-type" in host])'
  28. fi
  29. }
  30. _opssh()
  31. {
  32. local cur prev known_hosts
  33. COMPREPLY=()
  34. cur="${COMP_WORDS[COMP_CWORD]}"
  35. prev="${COMP_WORDS[COMP_CWORD-1]}"
  36. known_hosts="$(__opssh_known_hosts)"
  37. COMPREPLY=( $(compgen -W "${known_hosts}" -- ${cur}))
  38. return 0
  39. }
  40. complete -F _opssh opssh