Skip to content
Snippets Groups Projects
Commit 6fb81b36 authored by nimrod's avatar nimrod
Browse files

- Correct assertion for Ansible 2.3.0.0 (ansible_distribution_release and...

- Correct assertion for Ansible 2.3.0.0 (ansible_distribution_release and ansible_distribution_version were reversed for OpenBSD prior to that version).
parent d1a9b0c6
No related branches found
No related tags found
No related merge requests found
......@@ -5,4 +5,4 @@
assert:
that:
- ansible_os_family in ['OpenBSD', 'Debian']
- ansible_distribution_release in ['6.0', '5.9', 'xenial', 'trusty', 'precise', 'stretch', 'jessie', 'wheezy']
- ansible_distribution_release in ['xenial', 'trusty', 'precise', 'stretch', 'jessie', 'wheezy'] or ansible_distribution_version in ['6.0', '5.9']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment