ossh_bash_completion 639 B

123456789101112131415161718
  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()])'
  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