From 125ca70b70998e04cc08fd08bbbec4a06d8db9db Mon Sep 17 00:00:00 2001 From: Jose Date: Sun, 12 Oct 2025 07:47:21 +0200 Subject: [PATCH] =?UTF-8?q?fix=20=F0=9F=90=9B:=20Update=20hostname.yml=20t?= =?UTF-8?q?o=20include=20all=20mounted=20filesystems,=20excluding=20tmpfs,?= =?UTF-8?q?=20overlay,=20and=20squashfs.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the `hostname.yml` file by including all mounted filesystems, excluding specific types. --- tasks/hostname.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/hostname.yml b/tasks/hostname.yml index 102a00f..acba760 100644 --- a/tasks/hostname.yml +++ b/tasks/hostname.yml @@ -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 }}