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:
@@ -53,7 +53,7 @@
|
|||||||
msg: |
|
msg: |
|
||||||
💾 Mounted Filesystems
|
💾 Mounted Filesystems
|
||||||
-------------------------
|
-------------------------
|
||||||
{% for mount in ansible_mounts and mount.fstype not in ['tmpfs', 'overlay', 'squashfs']%}
|
{% for mount in ansible_mounts %}
|
||||||
Mount Point : {{ mount.mount }}
|
Mount Point : {{ mount.mount }}
|
||||||
Device : {{ mount.device }}
|
Device : {{ mount.device }}
|
||||||
Fstype : {{ mount.fstype }}
|
Fstype : {{ mount.fstype }}
|
||||||
|
|||||||
Reference in New Issue
Block a user