We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa363f commit e710340Copy full SHA for e710340
changelogs/fragments/assert.yml
@@ -0,0 +1,3 @@
1
+---
2
+bugfixes:
3
+ - "orahost: Fix warning conditional statements should not include jinja2 templating (oravirt#391)"
roles/orahost/tasks/assert.yml
@@ -3,8 +3,8 @@
ansible.builtin.assert:
4
quiet: true
5
that:
6
- - "ansible_os_family == '{{ os_family_supported }}'"
7
- - "ansible_facts['distribution_version'] is version('{{ os_min_supported_version }}', '>=')"
+ - ansible_os_family == os_family_supported
+ - ansible_facts['distribution_version'] is version(os_min_supported_version, '>=')
8
tags:
9
- oscheck
10
0 commit comments