0 votes
in Ansible by

How can you use the Ansible module “yum” to install a package on a target system?

a) By using the “package” parameter to specify the name of the package to install

b) By using the “name” parameter to specify the name of the package to install

c) By using the “action” parameter with the value “install”

d) By using the “state” parameter with the value “installed”

1 Answer

0 votes
by

Solution: b) By using the “name” parameter to specify the name of the package to install

Explanation: The Ansible module “yum” can be used to install a package on a target system by using the “name” parameter to specify the name of the package to install.

...