Ansible shows an error:
ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.
What is wrong?
The exact transcript is:
ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.
The error appears to have been in 'playbook.yml': line 10, column 3, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
---
- name: My task name
^ here
Reason #1
You are using an older version of Ansible which did not have the module you try to run.
How to check it?
Open the list of modules module documentation and find the documentation page for your module.
Read the header at the top of the page - it usually shows the Ansible version in which the module was introduced. For example:
Ensure you are running the specified version of Ansible or later. Run:
And check the output. It should show something like:
Reason #2
You tried to write a role and put a playbook in
my_role/tasks/main.yml
.The
tasks/main.yml
file should contain only a list of tasks. If you specified:Ansible tries to find an action module named
hosts
and an action module namedtasks
. It doesn't, so it throws an error.Solution: specify only a list of tasks in the
tasks/main.yml
file:Reason #3
The action module name is misspelled.
This is pretty obvious, but overlooked. If you use incorrect module name, for example
users
instead ofuser
, Ansible will report "no action detected in task".Ansible was designed as a highly extensible system. It does not have a limited set of modules which you can run and it cannot check "in advance" the spelling of each action module.
In fact you can write and then specify your own module named
qLQn1BHxzirz
and Ansible has to respect that. As it is an interpreted language, it "discovers" the error only when trying to execute the task.Reason #4
You are trying to execute a module not distributed with Ansible.
The action module name is correct, but it is not a standard module distributed with Ansible.
If you are using a module provided by a third party - a vendor of software/hardware or another module shared publicly, you must first download the module and place it in appropriate directory.
You can place it either in
modules
subdirectory of the playbook or in a common path.Ansible looks
ANSIBLE_LIBRARY
or the--module-path
command line argument.To check what paths are valid, run:
and check the value of:
Ansible version 2.4 and later should provide a list of paths.
Reason #5
You really don't have any action inside the task.
The task must have some action module defined. The following example is not valid: