We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b607eb1 + 036f93c commit 833b136Copy full SHA for 833b136
tasks/dependencies.yml
@@ -3,13 +3,13 @@
3
package:
4
name: "python3-pip"
5
state: "present"
6
- when: "ansible_python_version | version_compare('3.0.0', '>=')"
+ when: "ansible_python_version is version_compare('3.0.0', '>=')"
7
8
- name: "Install pip to manage python packages"
9
10
name: "python-pip"
11
12
- when: "ansible_python_version | version_compare('3.0.0', '<=')"
+ when: "ansible_python_version is version_compare('3.0.0', '<=')"
13
14
- name: "Install the passlib python library"
15
pip:
0 commit comments