Skip to content

Commit

Permalink
fixing syntax in redeploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdjscott committed Nov 13, 2023
1 parent e9dfa5d commit f00c7bb
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions redeploy-ml102.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@
- name: Get list of home directories on ML102 node
become: yes
hosts: webnode
find:
paths: /home/shared
file_type: directory
recurse: no
register: homes_find
tasks:
- name: List home directories
find:
paths: /home/shared
file_type: directory
recurse: no
register: homes_find

- debug:
var: item.path
with_items: "{{ homes_find.files }}"
- debug:
var: item.path
with_items: "{{ homes_find.files }}"

0 comments on commit f00c7bb

Please sign in to comment.