0 votes
in Ansible by

How can you use the Ansible module “cron” to remove a cron job from a target system?

a) By using the “name” parameter to specify the name of the cron job to remove

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

c) By using the “job” parameter with the value “remove”

d) By using the “cron” parameter with the value “remove”

1 Answer

0 votes
by
Solution: b) By using the “state” parameter with the value “absent”

Explanation: The Ansible module “cron” can be used to remove a cron job from a target system by using the “state” parameter with the value “absent”.
...