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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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']