aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2019-01-29 22:53:44 +0100
committerHarald Welte <laforge@gnumonks.org>2019-01-29 22:53:44 +0100
commitd2300f83b19c1c463c8d017737092b8065f8e5ea (patch)
tree29dc2be52d6ac46f18539ba423b4facc0f444637
parent844f25dfbfa63537fe637005ff2c140a725a35f0 (diff)
ansible/install-poky-sdk: Use "-y" command line argument
At least with current ansible, this patch is required to avoid the poky SDK installer waiting indefinitely to somebody answering his prompts on stdin. Change-Id: I084a5a152f00bbd484f5616d417fa1486cb79413
-rw-r--r--ansible/roles/install-poky-sdk/tasks/main.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ansible/roles/install-poky-sdk/tasks/main.yml b/ansible/roles/install-poky-sdk/tasks/main.yml
index dda60c5..9d64347 100644
--- a/ansible/roles/install-poky-sdk/tasks/main.yml
+++ b/ansible/roles/install-poky-sdk/tasks/main.yml
@@ -19,7 +19,7 @@
tags: [poky]
- name: execute poky installer
- command: "/tmp/{{ poky_installer_file }}"
+ command: "/tmp/{{ poky_installer_file }} -y"
args:
creates: "/opt/poky/{{ poky_version }}"
when: poky_copy.failed == false