Skip to content
Snippets Groups Projects
Commit d2f9fe63 authored by Thomas Woerner's avatar Thomas Woerner
Browse files

Fix jinja2 white spaces issues reported by ansible-lint

This replaces double spaces by single spaces, fixes spaces in slices,
adds spaces before brackets and fixes bracket placing in when clauses.
parent d7c02d13
No related branches found
No related tags found
No related merge requests found
...@@ -176,12 +176,10 @@ ...@@ -176,12 +176,10 @@
minlength: "" minlength: ""
register: result register: result
failed_when: failed_when:
result.changed or ( result.changed or
result.failed and not ( (result.failed and not
"an internal error has occurred" in result.msg ("an internal error has occurred" in result.msg or
or "int() argument must be" in result.msg "int() argument must be" in result.msg))
)
)
when: ipa_version is version("4.9", ">=") when: ipa_version is version("4.9", ">=")
- name: Ensure minlength is not cleared due to FreeIPA issue - name: Ensure minlength is not cleared due to FreeIPA issue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment