Browse Source

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

pull/3704/head
Egor 6 years ago
committed by Antoine Legrand
parent
commit
13af4c1f40
1 changed files with 1 additions and 1 deletions
  1. 2
      remove-node.yml

2
remove-node.yml

@ -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

Loading…
Cancel
Save