Skip to content
Snippets Groups Projects
Commit f912a4ec authored by Dmitry's avatar Dmitry Committed by Matthew Mosesohn
Browse files

Fix compare AnsibleUnsafeText with int (#2828)

parent d1e66f9c
No related branches found
No related tags found
No related merge requests found
...@@ -184,7 +184,7 @@ ...@@ -184,7 +184,7 @@
delay: "{{ retry_stagger | random + 3 }}" delay: "{{ retry_stagger | random + 3 }}"
when: when:
- ansible_distribution == "Fedora" - ansible_distribution == "Fedora"
- ansible_distribution_major_version > 21 - ansible_distribution_major_version|int > 21
- not is_atomic - not is_atomic
changed_when: False changed_when: False
tags: tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment