mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-08-01 12:24:43 +00:00
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.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user