1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 20:44:56 +02:00
tldr/pages/common/ansible-galaxy.md
2019-01-30 11:19:23 +00:00

24 lines
440 B
Markdown

# ansible-galaxy
> Create and manage Ansible roles.
> Homepage: <https://docs.ansible.com/ansible/latest/cli/ansible-galaxy.html>.
- 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}}`