This repository was archived by the owner on Feb 13, 2023. It is now read-only.

Description
It would be great if Drupal VM asserted that a minimum version of Ansible is in use.
You could use the assert module for this.
Something like:
- hosts: all
tasks:
- name: Get current Ansible version on local host
local_action: command ansible --version
register: local_ansible_version
- assert:
that:
- "'2.1' in local_ansible_version.stdout"