Skip to content

Commit

Permalink
fix: ansible error when trying to delete files
Browse files Browse the repository at this point in the history
  • Loading branch information
onedr0p authored May 27, 2023
1 parent 00798e8 commit edb3b21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/playbooks/cluster-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@
file_type: file
use_regex: true
patterns: ["^custom-.*"]
register: custom_manifest_files
register: custom_manifest

- name: Delete all custom manifest files
ansible.builtin.file:
path: "{{ item.path }}"
state: absent
loop: "{{ custom_manifest_files }}"
loop: "{{ custom_manifest.files }}"

0 comments on commit edb3b21

Please sign in to comment.