Skip to content

Commit

Permalink
Merge pull request #134 from oggers/master
Browse files Browse the repository at this point in the history
Fix version check
  • Loading branch information
oggers authored Oct 1, 2019
2 parents aaeaf93 + 4b9afc8 commit 7cefde1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- name: Fail if Ansible is old
fail: msg="We need updates in Ansible 2.5.0. Please update your kit. 'pip install -U Ansible'"
when: ansible_version is version('2.5.0', 'lt')
when: ansible_version.full is version('2.5.0', '<')

- name: Fail if no plone initial password set
fail: msg="You must set the plone_initial_password variable."
Expand Down

0 comments on commit 7cefde1

Please sign in to comment.