README_SHELL_COMPLETION 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # completion is available for ossh/oscp
  2. ossh/oscp uses a dynamic inventory cache in order to lookup
  3. hostnames and translate them to something meaningful
  4. such as an IP address or dns name.
  5. This allows us to treat our servers as cattle and not as pets.
  6. If you have not run the ossh command and it has not laid down
  7. a cache file the completions will not be available.
  8. You can populate the cache by running `ossh --list`. This
  9. will populate the cache file and the completions should
  10. become available.
  11. This script will look at the cached version of your
  12. multi_inventory results in ~/.ansible/tmp/multi_inventory.cache.
  13. It will then parse a few {host}.{env} out of the json
  14. and return them to be completable.
  15. # BASH
  16. In order to setup bash completion, source the following script:
  17. /path/to/repository/openshift-ansible/bin/ossh_bash_completion
  18. # ZSH
  19. In order to setup zsh completion, you will need to verify
  20. that the _ossh_zsh_completion script is somewhere in the path
  21. of $fpath.
  22. Once $fpath includes the _ossh_zsh_completion script then you should
  23. run `exec zsh`. This will then allow you to call `ossh host[TAB]`
  24. for a list of completions.
  25. Before completing the final step, zsh keeps its own cache in
  26. ~/.zcompdump of the known functions and variables. In order to
  27. refresh with new variables and completion arrays you might need
  28. to `rm ~/.zcompdump` before running `exec zsh`.