tldr/pages/common/ansible-galaxy.md

24 lines
336 B
Markdown
Raw Normal View History

2017-09-14 03:57:24 +01:00
# ansible-galaxy
2017-09-14 04:01:49 +01:00
> Create and manage Ansible roles.
2017-09-14 03:57:24 +01:00
2017-09-14 04:01:49 +01:00
- Install a role:
2017-09-14 03:57:24 +01:00
`ansible-galaxy install {{role_name}}`
2017-09-14 04:01:49 +01:00
- Remove a role:
2017-09-14 03:57:24 +01:00
`ansible-galaxy remove {{role_name}}`
2017-09-14 04:01:49 +01:00
- List installed roles:
2017-09-14 03:57:24 +01:00
`ansible-galaxy list`
2017-09-14 04:01:49 +01:00
- Search for roles:
2017-09-14 03:57:24 +01:00
`ansible-galaxy search {{role_name}}`
2017-09-14 04:01:49 +01:00
- Create a new role:
2017-09-14 03:57:24 +01:00
2017-09-14 04:01:49 +01:00
`ansible-galaxy init {{role_name}}`