summaryrefslogtreecommitdiff
path: root/tests/fixtures/config/remote-action-modules/git/org_project/playbooks/roles/assemble-test-delegate/tasks/main.yaml
blob: 57c186b06de410ebddb1cc45cbb780192464ae70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- include: assemble-delegate.yaml
  with_items:
    - ::1
    - 127.0.0.1
    - localhost

- name: Define target dir
  set_fact:
    targetdir: "{{ zuul.executor.work_root }}/assemble-target"

- name: Create target dir
  file:
    state: directory
    path: "{{ targetdir }}"
  delegate_to: localhost

- name: Assemble to safe local path
  assemble:
    src: dir
    dest: "{{ targetdir }}/assemble-dest.conf"
    remote_src: no
  delegate_to: localhost