aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-02-14 16:22:11 +0100
committerlaforge <laforge@osmocom.org>2020-03-03 16:26:52 +0000
commitf9e0070e2d964526a5afaac5090917c813fc30eb (patch)
tree0670a02defa0c269b06001a90c5f879a8494b0d5
parentb3819d2c6a3d48ae7c1a05fe7fb2f89ca4243ede (diff)
poky-sdk: Use first letter in caps (as in python bool)
Same as done in install-coverity/tasks/main.yml. Change-Id: Ifbfe678e89bef3acd33e562888ad81093fa1230d
-rw-r--r--ansible/roles/install-poky-sdk/tasks/main.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/ansible/roles/install-poky-sdk/tasks/main.yml b/ansible/roles/install-poky-sdk/tasks/main.yml
index 7f95dce..ff65c1b 100644
--- a/ansible/roles/install-poky-sdk/tasks/main.yml
+++ b/ansible/roles/install-poky-sdk/tasks/main.yml
@@ -21,7 +21,7 @@
command: "/tmp/{{ poky_installer_file }} -y -d '{{ poky_dest }}'"
args:
creates: "{{ poky_dest }}"
- when: poky_copy.failed == false
+ when: poky_copy.failed == False
tags: [poky]
- name: change owner/group to jenkins user
@@ -30,18 +30,18 @@
owner: "{{ jenkins_user }}"
group: "{{ jenkins_user }}"
recurse: yes
- when: poky_copy.failed == false
+ when: poky_copy.failed == False
tags: [poky]
- name: remove poky installer
file:
path: "/tmp/{{ poky_installer_file }}"
state: absent
- when: poky_copy.failed == false
+ when: poky_copy.failed == False
tags: [poky]
- name: "Please download {{ poky_installer_file }} to your ansible directory to allow ansible to install poky"
debug:
msg: "Ansible can not find or copy {{ poky_installer_file }}"
- when: poky_copy.failed
+ when: poky_copy.failed == True
tags: [poky]