fix 🐛: Update hostname.yml to include all mounted filesystems, excluding tmpfs, overlay, and squashfs.

Fixes the `hostname.yml` file by including all mounted filesystems, excluding specific types.
This commit is contained in:
2025-10-12 07:47:21 +02:00
parent 71a7c92d83
commit 125ca70b70

View File

@@ -53,7 +53,7 @@
msg: |
💾 Mounted Filesystems
-------------------------
{% for mount in ansible_mounts and mount.fstype not in ['tmpfs', 'overlay', 'squashfs']%}
{% for mount in ansible_mounts %}
Mount Point : {{ mount.mount }}
Device : {{ mount.device }}
Fstype : {{ mount.fstype }}