Files
xinfra/ansible/gather-host-facts.yml
T

10 lines
247 B
YAML
Raw Normal View History

2026-07-28 14:45:17 +08:00
---
- name: Gather host facts for delivery directory discovery
hosts: "{{ target_hosts | default('all') }}"
become: true
gather_facts: true
tasks:
- name: Show discovered mounts
ansible.builtin.debug:
var: ansible_mounts