summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/setup_paramiko/setup-remote-constraints.yml
blob: a86d47777cbc969ce8c1c447352dd51f1ba6ba53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- name: Setup remote temporary directory
  include_role:
    name: setup_remote_tmp_dir

- 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: "constraints.txt"
    dest: "{{ remote_constraints }}"