Skip to content
Snippets Groups Projects
Commit 841bc75a authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Revert "Add jinja2-py version check in pre_checks""

parents 1a21bf2a 15a5d2cc
No related branches found
No related tags found
No related merge requests found
...@@ -10,10 +10,3 @@ ...@@ -10,10 +10,3 @@
local_action: fail msg="Current Ansible version {{ ansible_version.full }} is less than {{ ansible_version_min }}" local_action: fail msg="Current Ansible version {{ ansible_version.full }} is less than {{ ansible_version_min }}"
run_once: true run_once: true
when: ansible_version.full | version_compare(ansible_version_min, '<') when: ansible_version.full | version_compare(ansible_version_min, '<')
- name: Checking jinja2-py version
command: "{{ ansible_python.executable }} -c \"import jinja2; print jinja2.__version__\""
register: result
changed_when: false
failed_when: result | failed or
result.stdout | version_compare(jinja2_py_version_min, '<', strict=True)
...@@ -2,4 +2,3 @@ ...@@ -2,4 +2,3 @@
docker_version_min: '1.10.0' docker_version_min: '1.10.0'
docker_py_version_min: '1.6.0' docker_py_version_min: '1.6.0'
ansible_version_min: '2.0.0' ansible_version_min: '2.0.0'
jinja2_py_version_min: '2.8.0'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment