remove-node: fix assert for ansible_version (#3703)

This commit is contained in:
Egor 2018-11-13 18:18:31 +03:00 committed by Antoine Legrand
parent afc3f7dce4
commit 13af4c1f40

View file

@ -5,7 +5,7 @@
assert:
msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
that:
- ansible_version.string is version("2.7.0", "<")
- ansible_version.string is version("2.7.0", "!=")
- ansible_version.string is version("2.5.0", ">=")
tags:
- check