ossh_zsh_completion 674 B

123456789101112131415161718192021222324
  1. #compdef ossh oscp
  2. _ossh_known_hosts(){
  3. if [[ -f ~/.ansible/tmp/multi_ec2_inventory.cache ]]; then
  4. print $(/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()])')
  5. fi
  6. }
  7. _ossh(){
  8. local curcontext="$curcontext" state line
  9. typeset -A opt_args
  10. #_arguments "*:Hosts:_ossh_known_hosts"
  11. _arguments -s : \
  12. "*:hosts:->hosts"
  13. case "$state" in
  14. hosts)
  15. _values 'hosts' $(_ossh_known_hosts)
  16. ;;
  17. esac
  18. }
  19. _ossh "$@"