_ossh 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #compdef ossh oscp
  2. _ossh_known_hosts(){
  3. if [[ -f ~/.ansible/tmp/multi_inventory.cache ]]; then
  4. print $(/usr/bin/python -c 'import json,os; z = json.loads(open("%s"%os.path.expanduser("~/.ansible/tmp/multi_inventory.cache")).read()); print "\n".join(["%s.%s" % (host["oo_name"],host["oo_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. common_arguments=(
  11. '(- *)'{-h,--help}'[show help]' \
  12. {-v,--verbose}'[enable verbose]' \
  13. {-d,--debug}'[debug mode]' \
  14. {-l,--login_name}+'[login name]:login_name' \
  15. {-c,--command}+'[command to run on remote host]:command' \
  16. {-o,--ssh_opts}+'[SSH Options to pass to SSH]:ssh options' \
  17. {-e,--env}+'[environtment to use]:environment:->env' \
  18. '--list[list out hosts]' \
  19. ':OP Hosts:->oo_hosts'
  20. )
  21. case "$service" in
  22. ossh)
  23. _arguments -C -s \
  24. "$common_arguments[@]" \
  25. ;;
  26. oscp)
  27. _arguments -C -s \
  28. "$common_arguments[@]" \
  29. {-r,--recurse}'[Recursive copy]' \
  30. ':file:_files'
  31. ;;
  32. esac
  33. case "$state" in
  34. oo_hosts)
  35. _values 'oo_hosts' $(_ossh_known_hosts)
  36. ;;
  37. env)
  38. _values 'environment' ops int stg prod
  39. ;;
  40. esac
  41. }
  42. _ossh "$@"