25 lines
641 B
YAML
25 lines
641 B
YAML
---
|
|
- name: Check Ansible version
|
|
hosts: all
|
|
gather_facts: false
|
|
become: false
|
|
run_once: true
|
|
vars:
|
|
minimal_ansible_version: 2.16.4
|
|
maximal_ansible_version: 2.17.0
|
|
tags: always
|
|
tasks:
|
|
- name: "Check that python netaddr is installed"
|
|
assert:
|
|
msg: "Python netaddr is not present"
|
|
that: "'127.0.0.1' | ansible.utils.ipaddr"
|
|
tags:
|
|
- check
|
|
|
|
- name: "Check that jinja is not too old (install via pip)"
|
|
assert:
|
|
msg: "Your Jinja version is too old, install via pip"
|
|
that: "{% set test %}It works{% endset %}{{ test == 'It works' }}"
|
|
tags:
|
|
- check
|