1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 20:02:09 +02:00
tldr/pages/common/ansible-galaxy.md
2017-09-13 21:40:12 -07:00

23 lines
361 B
Markdown

# ansible-galaxy
> Create and manage Ansible roles.
- Install a role:
`ansible-galaxy install {{username.role_name}}`
- Remove a role:
`ansible-galaxy remove {{username.role_name}}`
- List installed roles:
`ansible-galaxy list`
- Search for a given role:
`ansible-galaxy search {{role_name}}`
- Create a new role:
`ansible-galaxy init {{role_name}}`