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

Merge "Fix the prechecks for the ansible version"

parents f98fe814 3b1b6abf
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ dev/vagrant/storage/
releasenotes/build
# Files generated by Ansible
ansible/site.retry
ansible/*.retry
# Others
.DS_Store
......
......@@ -10,7 +10,7 @@
local_action: command ansible --version
register: result
changed_when: false
failed_when: result.stdout | regex_replace('ansible (\\d+\\.\\d+\\.\\d+)', '\\1') | version_compare(ansible_version_max, '>=')
failed_when: result.stdout | regex_replace('ansible (\\d+\\.\\d+\\.\\d+)', '\\1') | version_compare(ansible_version_min, '<')
# If this fails run "apt-get install linux-image-generic-lts-wily"
- name: Checking LTS wily kernel version 4.2 on Ubuntu 14.04
......
docker_version_min: '1.10.0'
docker_py_version_min: '1.6.0'
ansible_version_max: '2.0.0'
ansible_version_min: '2.0.0'
ubuntu_kernel_version_min: '4.2'
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