You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While running make domserver I encountered the following error:
ERROR! this task 'include' has extra params, which is only allowed in the following modules: raw, include_role, win_shell, include_tasks, meta, shell, command, set_fact, add_host, import_tasks, script, group_by, import_role, win_command, include_vars
The error appears to be in '/home/gehack/domjudge-scripts/provision-contest/ansible/domserver.yml': line 62, column 7, but may
be elsewhere in the file depending on the exact syntax problem.
The offending line appears to be:
handlers:
- include: handlers.yml
^ here
make: *** [Makefile:37: domserver] Error 4
I resolved this by changing
handlers:
- include: handlers.yml
to
handlers:
- import_tasks: handlers.yml
This may be an issue in other files too. This is my ansible version
While running
make domserver
I encountered the following error:I resolved this by changing
to
This may be an issue in other files too. This is my ansible version
The text was updated successfully, but these errors were encountered: