poky-sdk: Use first letter in caps (as in python bool)

Same as done in install-coverity/tasks/main.yml.

Change-Id: Ifbfe678e89bef3acd33e562888ad81093fa1230d
This commit is contained in:
Pau Espin 2020-02-14 16:22:11 +01:00 committed by laforge
parent b3819d2c6a
commit f9e0070e2d
1 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@
command: "/tmp/{{ poky_installer_file }} -y -d '{{ poky_dest }}'" command: "/tmp/{{ poky_installer_file }} -y -d '{{ poky_dest }}'"
args: args:
creates: "{{ poky_dest }}" creates: "{{ poky_dest }}"
when: poky_copy.failed == false when: poky_copy.failed == False
tags: [poky] tags: [poky]
- name: change owner/group to jenkins user - name: change owner/group to jenkins user
@ -30,18 +30,18 @@
owner: "{{ jenkins_user }}" owner: "{{ jenkins_user }}"
group: "{{ jenkins_user }}" group: "{{ jenkins_user }}"
recurse: yes recurse: yes
when: poky_copy.failed == false when: poky_copy.failed == False
tags: [poky] tags: [poky]
- name: remove poky installer - name: remove poky installer
file: file:
path: "/tmp/{{ poky_installer_file }}" path: "/tmp/{{ poky_installer_file }}"
state: absent state: absent
when: poky_copy.failed == false when: poky_copy.failed == False
tags: [poky] tags: [poky]
- name: "Please download {{ poky_installer_file }} to your ansible directory to allow ansible to install poky" - name: "Please download {{ poky_installer_file }} to your ansible directory to allow ansible to install poky"
debug: debug:
msg: "Ansible can not find or copy {{ poky_installer_file }}" msg: "Ansible can not find or copy {{ poky_installer_file }}"
when: poky_copy.failed when: poky_copy.failed == True
tags: [poky] tags: [poky]