Hello,
I have a task that looks like this:
`
We need to ignore errors because links won’t all be there.
- name: migrate group-owned staff files to new GIDs
shell: “find /home/staff -gid {{item.0.gid}} -exec chgrp {{item.1.stdout}} \{\} +”
ignore_errrors: yes
with_together: - “{{usergroups}}”
- “{{newgroupids.results}}”
`
But I get the error:
`
ERROR! ‘ignore_errrors’ is not a valid attribute for a Task
`
Any ideas?
Joanna