summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xci/playbooks/get-opnfv-scenario-requirements.yml8
1 files changed, 3 insertions, 5 deletions
diff --git a/xci/playbooks/get-opnfv-scenario-requirements.yml b/xci/playbooks/get-opnfv-scenario-requirements.yml
index 23aa1d41..a7b177ef 100644
--- a/xci/playbooks/get-opnfv-scenario-requirements.yml
+++ b/xci/playbooks/get-opnfv-scenario-requirements.yml
@@ -44,11 +44,9 @@
delay: "{{ git_clone_retry_delay }}"
- name: Plug in the roles to XCI
- file:
- state: link
- src: "{{ item.path | default(scenario_path_default) }}/{{ item.scenario | default(item.src | basename) }}/{{ item.role }}"
- dest: "{{ role_path_default }}/{{ item.scenario }}"
- force: yes
+ shell: >-
+ cp -a {{ item.path | default(scenario_path_default) }}/{{ item.scenario | default(item.src | basename) }}/{{ item.role }}
+ {{ role_path_default }}/{{ item.scenario }}
with_items: "{{ scenarios }}"
vars: