0 votes
in Ansible by

How can you use the Ansible module “service” to start a service on a target system?

a) By providing the name of the service as a parameter to the module

b) By using the “state” parameter with the value “started”

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

d) By using the “service” parameter with the value “start”

1 Answer

0 votes
by

Solution: b) By using the “state” parameter with the value “started”

Explanation: The Ansible module “service” can be used to start a service on a target system by using the “state” parameter with the value “started”.

...