88b52ff134
Add extra "/" so that files are copied into the destination, not as a directory in it. Change-Id: If0fe37f7b405fcdff73331baabe9241a50b3a5b7
10 lines
268 B
YAML
10 lines
268 B
YAML
- name: Create ~/scripts/ directory
|
|
file:
|
|
path: "{{ ansible_user_dir }}/scripts/"
|
|
state: directory
|
|
|
|
- name: Copy the release-tools directory to the remote node
|
|
synchronize:
|
|
src: "release-tools/"
|
|
dest: "{{ ansible_user_dir }}/scripts/release-tools"
|