ossh_bash_completion 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. __ossh_known_hosts(){
  2. if [[ -f ~/.ansible/tmp/multi_ec2_inventory.cache ]]; then
  3. /usr/bin/python -c 'import json,os; z = json.loads(open("%s"%os.path.expanduser("~/.ansible/tmp/multi_ec2_inventory.cache")).read()); print "\n".join(["%s.%s" % (host["ec2_tag_Name"],host["ec2_tag_environment"]) for dns, host in z["_meta"]["hostvars"].items() if all(k in host for k in ("ec2_tag_Name", "ec2_tag_environment"))])'
  4. fi
  5. }
  6. _ossh()
  7. {
  8. local cur prev known_hosts
  9. COMPREPLY=()
  10. cur="${COMP_WORDS[COMP_CWORD]}"
  11. prev="${COMP_WORDS[COMP_CWORD-1]}"
  12. known_hosts="$(__ossh_known_hosts)"
  13. COMPREPLY=( $(compgen -W "${known_hosts}" -- ${cur}))
  14. return 0
  15. }
  16. complete -F _ossh ossh oscp
  17. __opssh_known_hosts(){
  18. if [[ -f ~/.ansible/tmp/multi_ec2_inventory.cache ]]; then
  19. /usr/bin/python -c 'import json,os; z = json.loads(open("%s"%os.path.expanduser("~/.ansible/tmp/multi_ec2_inventory.cache")).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])'
  20. fi
  21. }
  22. _opssh()
  23. {
  24. local cur prev known_hosts
  25. COMPREPLY=()
  26. cur="${COMP_WORDS[COMP_CWORD]}"
  27. prev="${COMP_WORDS[COMP_CWORD-1]}"
  28. known_hosts="$(__opssh_known_hosts)"
  29. COMPREPLY=( $(compgen -W "${known_hosts}" -- ${cur}))
  30. return 0
  31. }
  32. complete -F _opssh opssh