Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
209f1aa8
Commit
209f1aa8
authored
Nov 03, 2018
by
Deepankumar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ansible plugin added
parent
05b61706
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
0 deletions
+64
-0
README.md
plugins/ansible/README.md
+35
-0
ansible.plugin.zsh
plugins/ansible/ansible.plugin.zsh
+29
-0
No files found.
plugins/ansible/README.md
0 → 100644
View file @
209f1aa8
# ansible plugin
## Introduction
The
`ansible plugin`
adds several aliases for useful
[
ansible
](
https://docs.ansible.com/ansible/latest/index.html
)
commands and
[
aliases
](
#aliases
)
.
To use it, add
`ansible`
to the plugins array of your zshrc file:
```
plugins=(... ansible)
```
## Aliases
| Command | Description |
|:-------------------------------------------|:--------------------------------------------------------------------|
|
`ansible-version`
/
`aver`
| Show the version on ansible installed in this host |
|
`ansible-role-init <role name>`
/
`arinit`
| Creates the Ansible Role as per Ansible Galaxy standard |
|
`a`
| command
`ansible`
|
|
`aconf`
| command
`ansible-config`
|
|
`acon`
| command
`ansible-console`
|
|
`aconn`
| command
`ansible-connection`
|
|
`ainv`
| command
`ansible-inventory`
|
|
`aplay`
| command
`ansible-playbook`
|
|
`ainv`
| command
`ansible-inventory`
|
|
`adoc`
| command
`ansible-doc`
|
|
`agal`
| command
`ansible-galaxy`
|
|
`apull`
| command
`ansible-pull`
|
|
`aval`
| command
`ansible-vault`
|
## Maintainer
### [Deepankumar](https://github.com/deepan10)
[
https://github.com/deepan10/oh-my-zsh/tree/features/ansible-plugin
](
https://github.com/deepan10/oh-my-zsh/tree/features/ansible-plugin
)
plugins/ansible/ansible.plugin.zsh
0 → 100644
View file @
209f1aa8
# Functions
function
ansible-version
(){
ansible
--version
}
function
ansible-role-init
(){
if
!
[
-z
$1
]
;
then
echo
"Ansible Role :
$1
Creating...."
ansible-galaxy init
$1
tree
$1
else
echo
"Usage : ansible-role-init <role name>"
echo
"Example : ansible-role-init role1"
fi
}
# Alias
alias
a
=
'ansible '
alias
aconf
=
'ansible-config '
alias
acon
=
'ansible-console '
alias
aconn
=
'ansible-connection '
alias
aver
=
'ansible-version'
alias
arinit
=
'ansible-role-init'
alias
aplay
=
'ansible-playbook '
alias
ainv
=
'ansible-inventory '
alias
adoc
=
'ansible-doc '
alias
agal
=
'ansible-galaxy '
alias
apull
=
'ansible-pull '
alias
aval
=
'ansible-vault'
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment