aboutsummaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2023-01-10 01:31:37 +0100
committerlaforge <laforge@osmocom.org>2023-01-23 10:57:30 +0000
commite64f85a0ee1f5e830a19b7e117dd11d36066a64e (patch)
tree1693df1d03627545ee31d3709e9b6192be65325d /ansible
parent6a290081c578da84451c5b7f7c19f9ecbd6009b0 (diff)
ansible: install-poky-sdk: ensure it's not installed twice
Check if the poky path already exists. Even this wouldn't detect if the poky has been only installed half way. Related: OS#5801 Change-Id: I8ff8e72a5974378327d4692341b0a371c667b741
Diffstat (limited to 'ansible')
-rw-r--r--ansible/roles/install-poky-sdk/tasks/main.yml67
1 files changed, 36 insertions, 31 deletions
diff --git a/ansible/roles/install-poky-sdk/tasks/main.yml b/ansible/roles/install-poky-sdk/tasks/main.yml
index 4b41bd2..7c1e9a9 100644
--- a/ansible/roles/install-poky-sdk/tasks/main.yml
+++ b/ansible/roles/install-poky-sdk/tasks/main.yml
@@ -9,40 +9,45 @@
cache_valid_time: 3600
update_cache: yes
-- name: copy poky installer
- copy:
- src: "{{ poky_installer_file }}"
- dest: "/tmp/{{ poky_installer_file }}"
- mode: 0750
- register: poky_copy
- ignore_errors: yes
+- name: check if poky needs to be installed
+ stat:
+ path: "{{ poky_dest }}"
+ register: poky_stat
tags: [poky]
-- name: execute poky installer
- command: "/tmp/{{ poky_installer_file }} -y -d '{{ poky_dest }}'"
- args:
- creates: "{{ poky_dest }}"
- when: poky_copy.failed == False
+- name: install poky if required
tags: [poky]
+ when: poky_stat.stat.exists == False
+ block:
+ - name: copy poky installer
+ copy:
+ src: "{{ poky_installer_file }}"
+ dest: "/tmp/{{ poky_installer_file }}"
+ mode: 0750
+ register: poky_copy
+ ignore_errors: yes
-- name: change owner/group to jenkins user
- file:
- path: "{{ poky_dest }}"
- owner: "{{ jenkins_user }}"
- group: "{{ jenkins_user }}"
- recurse: yes
- when: poky_copy.failed == False
- tags: [poky]
+ - name: execute poky installer
+ command: "/tmp/{{ poky_installer_file }} -y -d '{{ poky_dest }}'"
+ args:
+ creates: "{{ poky_dest }}"
+ when: poky_copy.failed == False
-- name: remove poky installer
- file:
- path: "/tmp/{{ poky_installer_file }}"
- state: absent
- when: poky_copy.failed == False
- tags: [poky]
+ - name: change owner/group to jenkins user
+ file:
+ path: "{{ poky_dest }}"
+ owner: "{{ jenkins_user }}"
+ group: "{{ jenkins_user }}"
+ recurse: yes
+ when: poky_copy.failed == False
-- 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 == True
- tags: [poky]
+ - name: remove poky installer
+ file:
+ path: "/tmp/{{ poky_installer_file }}"
+ state: absent
+ when: poky_copy.failed == False
+
+ - 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 == True