-
Notifications
You must be signed in to change notification settings - Fork 554
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add ansible-galaxy to command cheatsheet #826
Conversation
|
||
.. code-block:: bash | ||
|
||
ansible-galaxy collection install mynamespace.mycollection -p /path/to/collections --force-all-deps |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just showcase the simple ansible-galaxy collection install
command without extra options? I don't think most users will need -p
or --force-all-deps
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I thought maybe it was just the simple command, but I saw a few examples using the -p in the forum so wasn't sure. I can remove that stuff.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks good to me now. Thanks! We can include some other important commands like ansible-galaxy role install
and ansible-galaxy install -r
in a follow up PR.
Backport to stable-2.15: 💚 backport PR created✅ Backport PR branch: Backported as #884 🤖 @patchback |
Backport to stable-2.14: 💚 backport PR created✅ Backport PR branch: Backported as #885 🤖 @patchback |
Backport to stable-2.16: 💚 backport PR created✅ Backport PR branch: Backported as #898 🤖 @patchback |
Part of #48
Adds common CLI use for
ansible-galaxy
command.