We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a7645b commit a5123b1Copy full SHA for a5123b1
.gitignore
@@ -1,3 +1,5 @@
1
.DS_Store
2
*.pyc
3
__pycache__
4
+roles
5
+*.swp
tasks/setup-FreeBSD.yml
@@ -23,7 +23,7 @@
23
cmd: "{{ roadrunner.prefix.bin }}/rr -v | awk -F ' ' '{print $3}'"
24
25
- name: Handle roadrunner install/update
26
- when: not roadrunner_bin_exists or (roadrunner_version is defined and roadrunner_version.stdout != roadrunner.version)
+ when: not roadrunner_bin_exists.stat.exists or (roadrunner_version.stdout is defined and roadrunner_version.stdout != roadrunner.version)
27
block:
28
- name: Download the roadrunner v{{ roadrunner.version }} FreeBSD package
29
ansible.builtin.get_url:
0 commit comments