Skip to content

Commit

Permalink
fix issue with fetch command
Browse files Browse the repository at this point in the history
  • Loading branch information
ramperher committed Aug 4, 2023
1 parent 2541cf7 commit e8637bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions roles/generate_manifests/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@
# save them in a safe place in case of needing to check them
- name: Save a backup of agent-config files
fetch:
src: "{{ item }}"
dest: "{{ fetched_dest }}"
src: "{{ manifests_dir }}/{{ item }}"
dest: "{{ fetched_dest }}/{{ item }}"
flat: true
loop:
- "{{ manifests_dir }}/agent-config.yaml"
- "{{ manifests_dir }}/install-config.yaml"
- agent-config.yaml
- install-config.yaml

- name: Create extra_manifest_dir dir
ansible.builtin.file:
Expand Down

0 comments on commit e8637bc

Please sign in to comment.