1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ansible-galaxy.md

33 lines
655 B
Markdown
Raw Normal View History

2017-09-13 19:57:24 -07:00
# ansible-galaxy
2017-09-13 20:01:49 -07:00
> Create and manage Ansible roles.
> More information: <https://docs.ansible.com/ansible/latest/cli/ansible-galaxy.html>.
2017-09-13 19:57:24 -07:00
2017-09-13 20:01:49 -07:00
- Install a role:
2017-09-13 19:57:24 -07:00
`ansible-galaxy install {{username}}.{{role_name}}`
2017-09-13 19:57:24 -07:00
2017-09-13 20:01:49 -07:00
- Remove a role:
2017-09-13 19:57:24 -07:00
`ansible-galaxy remove {{username}}.{{role_name}}`
2017-09-13 19:57:24 -07:00
2017-09-13 20:01:49 -07:00
- List installed roles:
2017-09-13 19:57:24 -07:00
`ansible-galaxy list`
2017-09-13 21:40:12 -07:00
- Search for a given role:
2017-09-13 19:57:24 -07:00
`ansible-galaxy search {{role_name}}`
2017-09-13 20:01:49 -07:00
- Create a new role:
2017-09-13 19:57:24 -07:00
2017-09-13 20:01:49 -07:00
`ansible-galaxy init {{role_name}}`
- Get information about a user role:
`ansible-galaxy role info {{username}}.{{role_name}}`
- Get information about a collection:
`ansible-galaxy collection info {{username}}.{{collection_name}}`