my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
2.1 KiB

3 years ago
  1. # ansible plugin
  2. ## Introduction
  3. The `ansible plugin` adds several aliases for useful [ansible](https://docs.ansible.com/ansible/latest/index.html) commands and [aliases](#aliases).
  4. To use it, add `ansible` to the plugins array of your zshrc file:
  5. ```
  6. plugins=(... ansible)
  7. ```
  8. ## Aliases
  9. | Command | Description |
  10. |:-------------------------------------------|:--------------------------------------------------------------------|
  11. | `ansible-version` / `aver` | Show the version on ansible installed in this host |
  12. | `ansible-role-init <role name>` / `arinit` | Creates the Ansible Role as per Ansible Galaxy standard |
  13. | `a` | command `ansible` |
  14. | `aconf` | command `ansible-config` |
  15. | `acon` | command `ansible-console` |
  16. | `ainv` | command `ansible-inventory` |
  17. | `aplaybook` | command `ansible-playbook` |
  18. | `ainv` | command `ansible-inventory` |
  19. | `adoc` | command `ansible-doc` |
  20. | `agal` | command `ansible-galaxy` |
  21. | `apull` | command `ansible-pull` |
  22. | `aval` | command `ansible-vault` |
  23. ## Maintainer
  24. ### [Deepankumar](https://github.com/deepan10)
  25. [https://github.com/deepan10/oh-my-zsh/tree/features/ansible-plugin](https://github.com/deepan10/oh-my-zsh/tree/features/ansible-plugin)