summaryrefslogtreecommitdiffstats
path: root/vagrant/ansible/roles/client.test.prep/tasks/main.yml
blob: 3e95c97ac6beb55cea0ee4f48ef26b25999a7f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
- debug:
    msg: "Preparing to checkout from test repo: {{ test_repo }}, branch {{test_repo_branch}}"

- name: Fetching tests repo
  git:
    repo: "{{ test_repo }}"
    version: "{{ test_repo_branch }}"
    dest: /root/samba-integration-tests

- name: Create a symlink for test-info.yml file
  file:
    src: /root/test-info.yml
    dest: /root/samba-integration-tests/test-info.yml
    owner: root
    group: root
    state: link