diff options
author | Yujun Zhang <zhang.yujunz@zte.com.cn> | 2017-05-08 06:28:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-08 06:28:34 +0000 |
commit | 28769eb7866a0fd362dd68e9ea545a82f136c679 (patch) | |
tree | f241554361ee8b45d36e7ee2d3ac917a917bb9ff /resources/ansible_roles/qtip-workspace/tasks | |
parent | f25075b0dd2656efd1daae10c4739f029788c83f (diff) | |
parent | ebf4e585a6bbc7a08c5e779ff9863436e44484d8 (diff) |
Merge "Implement qtip workspace create"
Diffstat (limited to 'resources/ansible_roles/qtip-workspace/tasks')
-rw-r--r-- | resources/ansible_roles/qtip-workspace/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/ansible_roles/qtip-workspace/tasks/main.yml b/resources/ansible_roles/qtip-workspace/tasks/main.yml index 4331468d..4fa60061 100644 --- a/resources/ansible_roles/qtip-workspace/tasks/main.yml +++ b/resources/ansible_roles/qtip-workspace/tasks/main.yml @@ -9,7 +9,7 @@ - name: creating directories file: - path: "{{ workspace }}/{{ item.path }}" + path: "{{ cwd }}/{{ workspace }}/{{ item.path }}" state: directory force: yes with_filetree: template/ @@ -18,7 +18,7 @@ - name: templating files template: src: "{{ item.src }}" - dest: "{{ workspace }}/{{ item.path }}" + dest: "{{ cwd }}/{{ workspace }}/{{ item.path }}" force: yes with_filetree: template/ when: item.state == 'file' |