- name: "DEBUG: List all files in /tmp to see what is actually there"
find:
paths: "/tmp"
recurse: no
register: tmp_contents
- name: "DEBUG: Print the names of files found in /tmp"
debug:
msg: "{{ tmp_contents.files | map(attribute='path') | list }}"
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)