0 votes
in Ansible by

How can you install an Ansible collection?

a) ansible-galaxy install collectionname

b) ansible install-collection collectionname

c) ansible-collection install collectionname

d) ansible install collection collectionname

1 Answer

0 votes
by

Solution: a) ansible-galaxy install collectionname

Explanation: To install an Ansible collection, you can use the ansible-galaxy install collectionname command. This will download and install the collection from Ansible Galaxy.

...