aead0e3a69
* bump minimal ansible version to 2.8.0 * check ansible version in separate playbook
15 lines
412 B
YAML
15 lines
412 B
YAML
---
|
|
- hosts: localhost
|
|
gather_facts: false
|
|
become: no
|
|
vars:
|
|
minimal_ansible_version: 2.8.0
|
|
ansible_connection: local
|
|
tasks:
|
|
- name: "Check ansible version >={{ minimal_ansible_version }}"
|
|
assert:
|
|
msg: "Ansible must be {{ minimal_ansible_version }} or higher"
|
|
that:
|
|
- ansible_version.string is version(minimal_ansible_version, ">=")
|
|
tags:
|
|
- check
|