mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
9 lines
304 B
YAML
9 lines
304 B
YAML
|
- name: record constraints.txt path on remote host
|
||
|
set_fact:
|
||
|
remote_constraints: "{{ remote_tmp_dir }}/constraints.txt"
|
||
|
|
||
|
- name: copy constraints.txt to remote host
|
||
|
copy:
|
||
|
src: "{{ role_path }}/../../../lib/ansible_test/_data/requirements/constraints.txt"
|
||
|
dest: "{{ remote_constraints }}"
|