We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In file tasks/section_08_level2.yml
with_items: audit_lines_for_find.stdout_lines should be with_items: "{{ audit_lines_for_find.stdout_lines }}"
Without the extra quoting the generated file contains the line audit_lines_for_find.stdout_lines which is not the intended behaviour
Believe this is because of stricter syntax in Ansible 2.0
The text was updated successfully, but these errors were encountered:
Yes, nice catch. Do you mind creating the pull request to be sure that you have the correct fix?
Sorry, something went wrong.
I've noticed several other variables and commands that should be quoted to follow best practices. I'll likely take on this work.
No branches or pull requests
In file tasks/section_08_level2.yml
with_items: audit_lines_for_find.stdout_lines
should be
with_items: "{{ audit_lines_for_find.stdout_lines }}"
Without the extra quoting the generated file contains the line
audit_lines_for_find.stdout_lines
which is not the intended behaviour
Believe this is because of stricter syntax in Ansible 2.0
The text was updated successfully, but these errors were encountered: